/* ==========================================================================
   ЛидерБетонГрупп (Сашино) — concrete / oxide TTN system
   Fonts: Montserrat 700 headings + Open Sans 400/600 body (pair from master prompt).
   Paper #eef1f3, charcoal steel #243038, brick accent #b23a22. Radius 2/4px, hairline
   elevation — not a recolor of Белоостров (no Oswald/Inter, no cream #faf7f0,
   no orange #e2611e / ochre #c47f1c, no 16px SaaS cards, no split-hero clone).
   Light construction site. Not dark SaaS, not agency wow.
   Round 7: prints keep native ratio. Cover crop only on tiny thumbs.
   Round 6 desk/page-head grammar stays (print on the sheet, never 100vw).
   Old class names (.page-head__grid, .cat-grid--media, .dlv-hero__grid, .split-panel,
   .footer-grid, .delivery-cluster, .trust-split, .hero__stage, .hero__yard) stay as fallbacks.
   ========================================================================== */

:root {
  --font-heading: "Montserrat", Arial, sans-serif;
  --font-body: "Open Sans", "Segoe UI", sans-serif;

  --paper: #eef1f3;
  --ink: #1c2328;
  --ink-soft: #4d5a63;
  --steel: #243038;
  --steel-2: #2f3b44;
  --steel-3: #3d4b55;
  --accent: #b23a22;
  --accent-dark: #8c2c18;
  --accent-soft: #f3ddd6;
  --sand: #e4e8eb;
  --line: #cdd3d7;
  --line-soft: #dfe4e8;
  --white: #ffffff;
  --ok: #2f7a4f;
  --warn: #b3401a;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;

  --fs-small: 0.875rem;
  --fs-base: 1rem;
  --fs-lead: 1.125rem;
  --fs-h3: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  --fs-h2: clamp(1.28rem, 1.12rem + 0.65vw, 1.75rem);
  --fs-h1: clamp(1.9rem, 1.4rem + 2vw, 2.75rem);
  --fs-hero: clamp(2.05rem, 1.45rem + 2.6vw, 3.25rem);

  --radius-s: 2px;
  --radius-m: 4px;
  --radius-l: 4px;
  --shadow-card: none;
  --shadow-pop: none;
  --header-util-h: 44px;
  --header-bar-h: 56px;
  --header-h: 100px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --focus: #b23a22;
  --tap: 44px;
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 12px);
  overflow-x: clip;
  color-scheme: light;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: var(--fs-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(178, 58, 34, 0.16);
}
::selection { background: var(--accent-soft); color: var(--ink); }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-underline-offset: 0.18em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-3);
  line-height: 1.18;
  text-wrap: balance;
  max-width: 100%;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--space-3); }
h3 { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
p { margin: 0 0 var(--space-3); }
strong { font-weight: 700; }
.price, .mark { color: var(--accent-dark); font-weight: 700; }
.price,
.cat-index__price { font-variant-numeric: tabular-nums; }
.container {
  --gutter-start: max(var(--space-5), env(safe-area-inset-left, 0px));
  --gutter-end: max(var(--space-5), env(safe-area-inset-right, 0px));
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: var(--gutter-start) var(--gutter-end);
}
@media (max-width: 560px) {
  .container {
    --gutter-start: max(var(--space-4), env(safe-area-inset-left, 0px));
    --gutter-end: max(var(--space-4), env(safe-area-inset-right, 0px));
  }
}

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
:target, :focus-visible {
  scroll-margin-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 12px);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 8px;
  z-index: 400;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-s);
}
.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  padding: 0.7rem 1rem;
  min-height: var(--tap);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.section-pad { padding: 2.75rem 0; }
.section-pad--lg { padding: 4.25rem 0; }
#price-board.section-pad { padding: 2rem 0; }
#faq.section-pad { padding: 2rem 0; }
.bg-alt { background: var(--sand); }
.bg-steel { background: var(--steel); color: #eef1f3; }
.bg-steel h2, .bg-steel h3 { color: #fff; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); margin-bottom: var(--space-2);
}
.section-eyebrow .rule { width: 22px; height: 2px; background: var(--accent); display: inline-block; }
.section-head { max-width: 44rem; margin-bottom: var(--space-6); }
.section-lead { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 0.82rem; padding: 0.85rem 1.35rem; border-radius: var(--radius-s);
  border: 1px solid transparent; cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  min-height: var(--tap); line-height: 1.1; white-space: nowrap;
  max-width: 100%;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-secondary { background: var(--white); color: var(--steel); border-color: var(--line); }
.btn-ghost-light { background: transparent; border-color: rgba(238,241,243,0.45); color: #eef1f3; }
.btn-block { width: 100%; }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
  .btn-secondary:hover { border-color: var(--steel-3); background: var(--sand); }
  .btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
}
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }

/* ---------- Header: two-row dispatch strip (clone-killer vs beloostrov white bar) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  padding-top: env(safe-area-inset-top, 0px);
  border-top: 3px solid var(--accent);
}
.site-header:has(.site-header__util) {
  background: var(--paper);
  border-bottom: 0;
}

.site-header__util {
  background: var(--white);
  color: var(--ink);
  font-size: 0.8rem;
  min-height: var(--header-util-h);
  border-bottom: 1px solid var(--line);
}
.site-header__util .container,
.site-header__util-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 1.1rem;
  min-height: var(--header-util-h);
  flex-wrap: nowrap;
}
.site-header__util:not(:has(.container)):not(:has(.site-header__util-inner)) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 1.1rem;
  padding-inline: max(var(--space-5), env(safe-area-inset-left, 0px)) max(var(--space-5), env(safe-area-inset-right, 0px));
}
.site-header__util .link-phone {
  color: var(--steel);
  font-size: 0.88rem;
  min-height: var(--tap);
}
.site-header__util .btn {
  min-height: var(--tap);
  padding: 0 0.85rem;
  font-size: 0.72rem;
}
.site-header__util-cta { flex-shrink: 0; }

.site-header__bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-height: var(--header-bar-h);
  flex-wrap: nowrap;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header:not(:has(.site-header__util)) .site-header__bar {
  min-height: 64px;
  background: var(--paper);
}

.brand { display: flex; align-items: center; gap: var(--space-3); margin-right: auto; min-width: 0; min-height: var(--tap); }
.brand__mark { width: 40px; height: 40px; border-radius: var(--radius-s); overflow: hidden; flex-shrink: 0; border: 1px solid var(--line); }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__mark--text {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--steel);
  color: #eef1f3;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.78rem; letter-spacing: -0.02em;
  border: none; border-radius: 2px;
}
.brand--on-ink .brand__mark--text { background: var(--accent); color: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; overflow: hidden; }
.brand__name {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; color: var(--steel);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.brand__sub { font-size: 0.7rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand--on-ink .brand__name { color: #fff; }
.brand--on-ink .brand__sub { color: #c5ced3; }
.brand--on-ink .brand__mark { border-color: transparent; }

.main-nav { display: flex; align-items: center; gap: 0.55rem 0.85rem; font-weight: 600; font-size: 0.88rem; }
.main-nav a { padding: var(--space-2) 2px; border-bottom: 2px solid transparent; white-space: nowrap; min-height: var(--tap); display: inline-flex; align-items: center; }
@media (hover: hover) and (pointer: fine) {
  .main-nav a:hover, .main-nav a.is-active { border-color: var(--accent); color: var(--accent-dark); }
}
.main-nav a.is-active { border-color: var(--accent); color: var(--accent-dark); }

.header-meta { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.header-hours {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; color: var(--steel);
  background: transparent; padding: 4px 8px; border-radius: var(--radius-s);
  border: 1px solid var(--line); white-space: nowrap;
}
.header-hours::before { content: ""; width: 6px; height: 6px; border-radius: 0; background: var(--accent); display: inline-block; flex-shrink: 0; }
.site-header__util .header-hours {
  color: var(--steel);
  background: transparent;
  border-color: var(--line);
  padding: 2px 8px;
  min-height: 28px;
}
.site-header__util .header-hours::before { background: var(--accent); box-shadow: none; }
.link-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; white-space: nowrap;
  min-height: var(--tap); padding: 0 2px;
  font-variant-numeric: tabular-nums;
}
.nav-toggle {
  display: none; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-s); width: 44px; height: 44px;
  align-items: center; justify-content: center; flex-shrink: 0;
}

.mobile-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-bottom: 1px solid var(--line); }
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a { display: flex; align-items: center; min-height: var(--tap); padding: var(--space-3) var(--space-5); border-bottom: 1px solid var(--line-soft); font-weight: 600; }
.mobile-nav__meta { padding: var(--space-4) var(--space-5); font-size: 0.85rem; color: var(--ink-soft); background: var(--sand); }

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 720px) {
  :root { --header-h: 92px; --header-util-h: 44px; --header-bar-h: 48px; }
  h1, h2, h3, h4 { text-wrap: wrap; overflow-wrap: normal; word-break: normal; }
  .page-head h1 { font-size: clamp(1.45rem, 1.15rem + 2.4vw, 1.9rem); }
  .site-header:not(:has(.site-header__util)) .header-hours,
  .site-header:not(:has(.site-header__util)) .header-meta > .btn { display: none; }
  .site-header__util-cta { display: none; }
  .link-phone span { display: inline; }
  .site-header:has(.site-header__util) .site-header__bar .link-phone,
  .site-header:has(.site-header__util) .site-header__bar .header-hours,
  .site-header:has(.site-header__util) .site-header__bar .header-meta > .btn { display: none; }

  /* One white stamp: two ledger rows, cells fill the sheet — no space-between voids. */
  .site-header,
  .site-header:has(.site-header__util),
  .site-header__util,
  .site-header__bar {
    background: var(--white);
  }
  .site-header .site-header__util .container,
  .site-header .site-header__util-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    padding-inline: 0;
    min-height: var(--header-util-h);
  }
  .site-header__util .header-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--header-util-h);
    margin: 0;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    font-size: 0.75rem;
    padding-inline: max(var(--space-3), env(safe-area-inset-left, 0px)) var(--space-3);
  }
  .site-header__util .link-phone {
    justify-content: center;
    width: 100%;
    min-height: var(--header-util-h);
    font-size: 0.82rem;
    padding-inline: var(--space-3) max(var(--space-3), env(safe-area-inset-right, 0px));
  }
  .site-header .site-header__bar.container,
  .site-header .site-header__bar {
    min-height: var(--header-bar-h);
    gap: 0;
    padding-inline: 0;
  }
  .site-header__bar .brand {
    flex: 1 1 auto;
    min-width: 0;
    padding-inline: max(var(--space-4), env(safe-area-inset-left, 0px)) var(--space-3);
    gap: var(--space-2);
  }
  .site-header__bar .header-meta {
    align-self: stretch;
    gap: 0;
    border-left: 1px solid var(--line);
  }
  .site-header__bar .nav-toggle {
    border: 0;
    border-radius: 0;
    background: transparent;
    width: 52px;
    height: 100%;
    min-height: var(--header-bar-h);
  }
  .site-header__bar .nav-toggle:active {
    background: var(--sand);
    transform: scale(1);
  }
}
@media (max-width: 560px) {
  .brand__sub { display: none; }
  .header-meta { gap: var(--space-2); }
  .brand__name { font-size: 1.02rem; }
  .site-header:not(:has(.site-header__util)) .link-phone { font-size: 0.86rem; }
  .brand__mark, .brand__mark--text { width: 36px; height: 36px; }
  .btn { white-space: normal; }
  .photo-teaser__more .btn { width: 100%; }
}
/* Two-row header: never stack brand under phone. Old one-row keeps tel on the bar. */
@media (max-width: 360px) {
  .site-header:not(:has(.site-header__util)) .site-header__bar {
    gap: var(--space-2);
  }
  .site-header:not(:has(.site-header__util)) .brand__name {
    font-size: 0.88rem;
    max-width: 10ch;
  }
  .site-header:not(:has(.site-header__util)) .link-phone { font-size: 0.75rem; }
  .site-header__util .header-hours { font-size: 0.7rem; }
}

/* ---------- Hero: old split (tokens) + new photo-stage + waybill ---------- */
.hero {
  padding: var(--space-5) 0 var(--space-7);
  background: var(--paper);
}
.hero:has(.hero__stage),
.hero--stage {
  padding: 0;
  background: var(--paper);
}
.hero:has(.hero__desk),
.hero--desk {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--paper);
}
.hero:has(.hero__yard),
.hero--yard {
  display: grid;
  grid-template-columns: 1fr;
  padding: var(--space-6) 0 var(--space-7);
  background: var(--paper);
}
.hero__yard {
  grid-row: 1;
  margin: 0 auto;
  max-width: 1180px;
  width: calc(100% - 2 * var(--space-5));
  line-height: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px;
}
.hero__yard img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
}
.hero--yard > .container {
  grid-row: 2;
  position: relative;
  z-index: 2;
  margin-top: var(--space-5);
}
.hero--yard .waybill {
  max-width: 36rem;
}
.hero__desk {
  display: block;
}
.hero--desk .waybill,
.hero:has(.hero__desk) .waybill {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero--desk .waybill > .hero__print,
.hero--desk .waybill > .hero__print--portrait {
  width: 100%;
  max-width: none;
  margin: var(--space-3) 0 var(--space-4);
  align-self: stretch;
  height: auto;
  min-height: 0;
  overflow: visible;
  display: block;
}
.hero--desk .waybill > .hero__print img,
.hero--desk .waybill > .hero__print--portrait img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: unset;
}
@media (min-width: 861px) {
  .hero--desk .waybill,
  .hero:has(.hero__desk) .waybill {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 26rem);
    grid-template-rows: repeat(12, auto);
    column-gap: var(--space-6);
    align-items: start;
  }
  .hero--desk .waybill > *:not(.hero__print) { grid-column: 1; }
  .hero--desk .waybill > .hero__print,
  .hero--desk .waybill > .hero__print--portrait {
    grid-column: 2;
    grid-row: 1 / -1;
    margin: 0;
    align-self: stretch;
    height: 0;
    min-height: 100%;
    overflow: hidden;
    display: grid;
  }
  .hero--desk .waybill > .hero__print img,
  .hero--desk .waybill > .hero__print--portrait img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 50% 38%;
  }
}
.hero__print {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-self: start;
  line-height: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px;
}
.hero__print img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: var(--space-6); align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: var(--space-3); }
.hero h1 { font-size: var(--fs-hero); margin-bottom: var(--space-3); letter-spacing: -0.02em; font-weight: 700; text-transform: none; }
.hero__h1-sub {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.02rem, 0.9rem + 0.55vw, 1.25rem);
  color: var(--accent);
  margin-top: var(--space-2);
  text-transform: none;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.hero__text { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 36rem; }
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin: var(--space-5) 0;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-fact { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-fact__value { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--steel); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.hero-fact__label { font-size: 0.8rem; color: var(--ink-soft); max-width: 18ch; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); }
.hero__trust { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.88rem; color: var(--steel); min-height: var(--tap); }
.hero__media { position: relative; border-radius: var(--radius-m); overflow: hidden; box-shadow: none; min-width: 0; border: 1px solid var(--line); }
.hero__media img {
  width: 100%;
  height: auto;
  object-fit: unset;
}
.hero__media-caption {
  position: static;
  display: block;
  margin-top: 0.55rem;
  padding: 0;
  background: none;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0;
}

/* Legacy photo-as-stage: paper, native ratio, no scrim */
.hero__stage {
  position: relative;
  min-height: 0;
  overflow: visible;
  background: var(--paper);
  padding: var(--space-6) 0;
}
.hero__stage::after { content: none; }
.hero__bg,
.hero__stage > img,
.hero__stage .hero__bg {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(42vh, 22rem);
  object-fit: contain;
  object-position: center;
  display: block;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px;
  box-sizing: content-box;
}
.hero__bg img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.hero__overlay {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  padding-block: 0 var(--space-6);
}
.hero__overlay:not(.container):not(:has(.container)) {
  padding-inline: max(var(--space-5), env(safe-area-inset-left, 0px)) max(var(--space-5), env(safe-area-inset-right, 0px));
}
.hero__overlay > .container {
  width: 100%;
}

.waybill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: var(--space-5);
  max-width: 34rem;
  width: 100%;
  box-shadow: none;
}
.waybill__addr,
.waybill__meta,
.waybill__from {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 var(--space-3);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.waybill__from .icon { color: var(--accent); flex-shrink: 0; }
.waybill h1,
.waybill .hero h1,
.hero .waybill h1 { margin-bottom: var(--space-2); }
.waybill__rows {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin: var(--space-4) 0;
  border-top: 1px solid var(--line-soft);
}
.waybill__rows > div,
.waybill__row { display: contents; }
.waybill__rows dt,
.waybill__row-label {
  grid-column: 1;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 400;
}
.waybill__rows dd,
.waybill__row-value {
  grid-column: 2;
  margin: 0;
  padding: 0.85rem 0 0.85rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-heading);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.waybill .hero__cta,
.waybill__cta { margin-top: var(--space-4); }
.waybill .hero__trust { color: var(--steel); }
.waybill .hero__text { font-size: 0.92rem; margin-bottom: 0; }
.waybill--page {
  max-width: 36rem;
}
.page-hero .waybill--page,
.dlv-hero .waybill--page { max-width: 36rem; }
.hero--desk .waybill,
.hero--desk .waybill.waybill--page,
.hero--desk.dlv-hero .waybill--page {
  max-width: none;
}
.waybill--compact { max-width: 32rem; }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { display: contents; }
  .hero__grid .hero__eyebrow { order: 1; }
  .hero__grid h1 { order: 2; margin-bottom: 0; }
  .hero__grid .hero__media { order: 3; }
  .hero__grid .hero__text { order: 4; }
  .hero__grid .hero__facts { order: 5; grid-template-columns: 1fr 1fr; }
  .hero__grid .hero__cta { order: 6; }
  .hero__facts { grid-template-columns: 1fr 1fr; }
  .hero-fact:last-child { grid-column: 1 / -1; }
  .hero__media {
    width: 100%;
    margin: var(--space-4) 0 var(--space-5);
    border-radius: 0;
    border: 0;
    overflow: visible;
  }
  .hero__media img {
    border-radius: var(--radius-m);
    border: 1px solid var(--line);
  }
}
@media (max-width: 860px) {
  .hero--desk .waybill > .hero__print,
  .hero--desk .waybill > .hero__print--portrait,
  .about-sheet__copy > .about-sheet__print,
  .page-head__desk--print .page-head__copy > .page-head__print,
  .hero__print,
  .hero__print--portrait,
  .sheet-desk__print,
  .sheet-desk__print--portrait,
  .page-head__print,
  .page-head__print--portrait,
  .page-head__strip,
  .about-sheet__print {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    align-self: stretch;
    overflow: visible;
    display: block;
  }
  .hero--desk .waybill > .hero__print img,
  .hero--desk .waybill > .hero__print--portrait img,
  .about-sheet__copy > .about-sheet__print img,
  .page-head__desk--print .page-head__copy > .page-head__print img,
  .hero__print img,
  .hero__print--portrait img,
  .sheet-desk__print img,
  .page-head__print img,
  .page-head__strip img,
  .about-sheet__print img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: unset;
  }
  .hero--yard .hero__yard {
    width: calc(100% - 2 * var(--space-4));
    height: auto;
    overflow: visible;
  }
  .hero--yard .hero__yard img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .hero--yard > .container {
    grid-row: 2;
    margin-top: var(--space-4);
    padding-top: 0;
  }
}
@media (max-width: 720px) {
  .hero__stage { min-height: 0; padding-bottom: 0; }
  .hero__bg,
  .hero__stage > img,
  .hero__stage .hero__bg {
    max-height: min(36vh, 16rem);
  }
  .hero__overlay {
    min-height: 0;
    align-items: flex-start;
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
    margin-top: 0;
  }
  .waybill {
    max-width: none;
    padding: var(--space-4);
  }
  .hero .waybill .hero__text,
  .dlv-hero__note,
  .waybill .hero__trust { display: none; }
  .waybill--page .section-lead {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: none;
    margin: 0 0 var(--space-1, 0.25rem);
    font-size: 0.95rem;
  }
  .waybill__rows { margin: var(--space-3) 0; }
  .waybill__rows dt,
  .waybill__rows dd,
  .waybill__row-label,
  .waybill__row-value { padding-top: 0.45rem; padding-bottom: 0.45rem; }
  .hero .waybill h1 { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .waybill .hero__cta { margin-top: var(--space-3); }
}
@media (max-width: 560px) {
  .hero { padding: var(--space-4) 0 var(--space-6); }
  .hero:has(.hero__stage),
  .hero--stage { padding: 0; }
  .hero:has(.hero__desk),
  .hero--desk { padding: var(--space-4) 0 var(--space-6); }
  .hero:has(.hero__yard),
  .hero--yard { padding: var(--space-4) 0 var(--space-5); }
  .hero__text { font-size: 1rem; }
  .hero__facts { gap: var(--space-3); }
  .hero-fact__value { font-size: 1.08rem; }
  .hero-fact__label { max-width: none; }
  .hero__cta .btn { flex: 1 1 9rem; }
}
@media (max-width: 400px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { flex: 1 1 auto; width: 100%; }
}

/* ---------- Spec plate (new) + light keyfacts (old dark-band killer) ---------- */
.spec-plate,
.keyfacts-band {
  background: var(--sand);
  color: var(--ink);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-plate__grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: left;
}
.spec-plate__item,
.spec-plate__grid > div,
.spec-plate__grid > dl,
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-3) var(--space-4);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.spec-plate__item:last-child,
.spec-plate__grid > :last-child,
.stat-card:last-child { border-right: 0; }
.spec-plate__num,
.spec-plate__item dt,
.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.spec-plate__label,
.spec-plate__item dd,
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
}
a.spec-plate__label {
  color: var(--steel);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
.stat-label a { color: var(--steel); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 0.16em; }
@media (max-width: 720px) {
  .spec-plate__grid,
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-plate__item:nth-child(2n),
  .spec-plate__grid > :nth-child(2n),
  .stat-card:nth-child(2n) { border-right: 0; }
  .spec-plate__item:nth-child(-n+2),
  .spec-plate__grid > :nth-child(-n+2),
  .stat-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Price board ---------- */
.price-board__head { margin-bottom: var(--space-5); }
.price-board__frame { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); box-shadow: none; overflow: hidden; }
.price-accordion__preview { padding: var(--space-5); }
.price-accordion__preview-bar { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); margin-bottom: var(--space-3); flex-wrap: wrap; }
.price-accordion__preview-label { font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.6px; color: var(--steel); margin: 0; }
.price-accordion__preview-unit { font-size: 0.8rem; color: var(--ink-soft); }
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  max-width: 100%;
}
.price-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.price-table td.cell-muted,
.price-table td.cell-muted .price-table__link { white-space: nowrap; }
@media (max-width: 560px) {
  .price-table thead th:nth-child(3),
  .price-table tbody td:nth-child(3) { display: none; }
}
.price-table th {
  text-align: left; font-family: var(--font-heading); text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.5px; color: var(--ink-soft);
  padding: 10px 12px; border-bottom: 2px solid var(--line);
}
.price-table td { padding: 12px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .cell-muted { color: var(--ink-soft); }
.price-table td.price,
.price-table .price { font-weight: 700; font-size: 1.02rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-approx-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.4px; color: var(--warn); background: var(--accent-soft);
  padding: 2px 7px; border-radius: var(--radius-s); margin-left: 6px; vertical-align: middle;
}
.price-accordion__toggle { margin-top: var(--space-4); width: 100%; justify-content: space-between; }
.price-accordion__toggle svg { transition: transform 180ms var(--ease-out); }
.price-accordion__toggle.is-open svg { transform: rotate(180deg); }
.price-accordion__panel { border-top: 1px solid var(--line); background: var(--paper); padding: var(--space-5); }
.price-board__tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--space-4); }
.price-board__tab {
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius-s); border: 1px solid var(--line);
  background: var(--white); cursor: pointer; min-height: var(--tap);
}
.price-board__tab.is-active { background: var(--steel); color: #fff; border-color: var(--steel); }
.price-board__panel { background: #fff; border-radius: var(--radius-m); padding: var(--space-4); border: 1px solid var(--line-soft); }
.price-board__all { margin: var(--space-3) 0 0; font-size: 0.9rem; }
.price-board__all a { color: var(--steel-3); text-decoration: underline; text-underline-offset: 0.16em; }
.price-board__footer {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: var(--space-3); padding: var(--space-4) var(--space-5);
  background: var(--sand); border-top: 1px solid var(--line);
}
.price-note { margin: 0; font-size: 0.85rem; color: var(--ink-soft); }
.price-board__footer-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.disclaimer-note {
  display: flex; gap: var(--space-3); background: var(--accent-soft);
  border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: var(--space-4); font-size: 0.9rem; color: var(--ink-soft); margin: var(--space-4) 0;
}
.disclaimer-note strong { color: var(--warn); }
.disclaimer-note .icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* Кликабельные ряды прайса */
.price-table tbody tr.is-link,
.price-table tbody tr.price-table__row.is-link { cursor: pointer; }
.price-table tbody tr.is-link td { padding: 0; }
.price-table tbody tr.is-link .price-table__link {
  display: block;
  padding: 12px;
  color: inherit;
  text-decoration: none;
  min-height: var(--tap);
  box-sizing: border-box;
}
.price-table tbody tr.is-link .price-table__link:hover,
.price-table tbody tr.is-link .price-table__link:focus,
.price-table tbody tr.is-link .price-table__link:visited {
  color: inherit;
  text-decoration: none;
}
.price-table tbody tr.is-link:focus-within {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}
.price-table tbody tr.is-link .price-table__link:focus { outline: none; }
.price-table tbody tr.is-link .price-table__link:focus-visible { outline: none; }
.price-table__thumb,
.price-thumb,
.price-table .price-table__link img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: var(--radius-s);
  flex-shrink: 0;
  background: var(--sand);
  display: block;
}
.price-table tbody tr.is-link td.price .price-table__link {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--accent-dark);
}
@media (hover: hover) and (pointer: fine) {
  .price-table tbody tr:hover { background: rgba(36, 48, 56, 0.04); }
  .price-table tbody tr.is-link:hover { background: var(--accent-soft); }
  .price-table tbody tr.is-link:hover .mark { color: var(--steel); }
}

.price-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 800px) {
  .price-card-grid { grid-template-columns: 1fr 1fr; }
}
.price-card,
a.price-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  min-height: 72px;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}
a.price-card:visited { color: inherit; }
.price-card--plain,
a.price-card--plain { grid-template-columns: minmax(0, 1fr) auto; }
.price-card__media {
  display: block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: var(--radius-s);
  background: var(--sand);
  border: 1px solid var(--line-soft);
}
.price-card img,
.price-card__media img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
  background: var(--sand);
}
.price-card__body { min-width: 0; }
.price-card .price,
.price-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--accent-dark);
  text-align: right;
  line-height: 1.2;
}
.price-card__unit {
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-soft);
  white-space: nowrap;
}
.price-card__title {
  margin: 0 0 4px;
  font-size: 1rem;
  overflow-wrap: anywhere;
}
.price-card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price-card[data-search-hidden] { display: none; }
.price-card:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .price-card:hover { border-color: var(--accent); background: var(--accent-soft); }
}
@media (max-width: 560px) {
  .price-card,
  a.price-card { grid-template-columns: 56px minmax(0, 1fr); }
  .price-card--plain,
  a.price-card--plain { grid-template-columns: minmax(0, 1fr); }
  .price-card__media,
  .price-card img,
  .price-card__media img { width: 56px; height: 56px; }
  .price-card .price,
  .price-card__price {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
  .price-card--plain .price,
  a.price-card--plain .price-card__price { grid-column: 1; }
}

.price-valid { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }
.price-table-wrap--ledger { border: 1px solid var(--line-soft); border-radius: var(--radius-m); }

@media (max-width: 620px) {
  .price-board__footer-actions { width: 100%; }
  .price-board__footer-actions .btn { flex: 1 1 auto; }
  .price-accordion__preview { padding: var(--space-4); }
  .price-table th, .price-table td { padding: 10px 8px; }
  .price-table tbody tr.is-link .price-table__link { padding: 10px 8px; }
}

/* ---------- Cards / grids ---------- */
.feature-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-5); }
.feature-card-lg { display: block; position: relative; border-radius: var(--radius-m); overflow: hidden; box-shadow: none; border: 1px solid var(--line); min-height: 340px; color: #fff; }
.feature-card-lg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.feature-card-lg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,48,56,0.12) 20%, rgba(36,48,56,0.88) 100%); z-index: -1; }
.feature-card-lg__body { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-5); }
.feature-card-lg__body h3 { color: #fff; }
.feature-card-lg__body p { color: #dfe6ea; max-width: 30ch; }
.feature-stack { display: flex; flex-direction: column; gap: var(--space-4); }
.service-card {
  display: flex; gap: var(--space-4); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: var(--space-4); flex: 1;
  min-height: 72px; align-items: flex-start;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.service-card__icon { width: 44px; height: 44px; border-radius: var(--radius-s); background: var(--accent-soft); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-card h3 { margin-bottom: 4px; }
.service-card p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
@media (hover: hover) and (pointer: fine) {
  .service-card:hover { border-color: var(--steel-3); }
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } .feature-card-lg { min-height: 240px; } }

/* Product groups: index rows, not a 3-up shop window */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .cat-grid:not(.cat-grid--media) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cat-index .cat-grid,
.cat-index .cat-grid--media,
.cat-grid--media {
  grid-template-columns: 1fr;
  gap: 0;
}

.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: var(--space-5); display: flex; flex-direction: column;
  transition: background-color 160ms ease, border-color 160ms ease;
  color: inherit;
  min-height: var(--tap);
}
.cat-card img,
.cat-card__media img {
  width: 100%;
  height: auto;
  object-fit: unset;
  border-radius: var(--radius-s);
  margin: 0 0 var(--space-3);
  background: var(--sand);
}
.cat-card h3 { margin-bottom: 6px; }
.cat-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: var(--space-3); flex: 1; }
.cat-card__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-size: 0.85rem; color: var(--ink-soft); }
.cat-card__meta .price { font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.cat-card:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .cat-card:hover { border-color: var(--steel-3); }
}

a.cat-card--media {
  padding: 0;
  overflow: hidden;
  color: inherit;
}
.cat-card--media .cat-card__media {
  overflow: hidden;
  background: var(--sand);
  line-height: 0;
  margin: 0;
}
.cat-card--media .cat-card__media::after { content: none; }
.cat-card--media .cat-card__media img {
  position: static;
  margin: 0;
  border-radius: 0;
  width: 100%;
  height: auto;
  object-fit: unset;
}
.cat-card--media .cat-card__body {
  padding: 0.95rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 0.3rem;
}
.cat-card--media h3 { margin: 0; }
.cat-card--media .cat-card__meta { margin-top: 0.35rem; }
.cat-card--media .cat-card__meta .price { color: var(--accent-dark); }
.cat-card--media p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Old catalog/home HTML: .cat-grid--media becomes a 1-col index of horizontal cards */
.cat-grid--media {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-grid--media a.cat-card--media {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 56px;
  padding: 0.65rem 0.85rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}
.cat-grid--media a.cat-card--media:last-child { border-bottom: 0; }
.cat-grid--media a.cat-card--media:active { transform: none; }
.cat-grid--media .cat-card--media .cat-card__media {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  height: 80px;
  aspect-ratio: auto;
  align-self: center;
  border: 1px solid var(--line-soft);
  grid-column: 1;
  grid-row: 1 / span 2;
}
.cat-grid--media .cat-card--media .cat-card__body {
  display: contents;
  padding: 0;
}
.cat-grid--media .cat-card--media h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.05rem;
  min-width: 0;
}
.cat-grid--media .cat-card--media p {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.84rem;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  min-height: 0;
  max-height: none;
  flex: none;
}
.cat-grid--media .cat-card--media .cat-card__meta {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  padding: 0;
  border: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.cat-grid--media .cat-card--media .cat-card__meta .price {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}
#supply .cat-grid--media a.cat-card--media:first-child .cat-card__media {
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  height: 100px;
}
#supply .cat-grid--media a.cat-card--media:first-child {
  grid-template-columns: 160px minmax(0, 1fr) auto;
}
#supply .cat-grid--media a.cat-card--media:first-child h3 { font-size: var(--fs-h3); }
@media (hover: hover) and (pointer: fine) {
  .cat-grid--media a.cat-card--media:hover { background: var(--sand); }
  .cat-card--media:hover .cat-card__media img { transform: none; }
}
@media (max-width: 620px) {
  .cat-grid--media a.cat-card--media,
  #supply .cat-grid--media a.cat-card--media:first-child {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 0.75rem;
    row-gap: 0.15rem;
  }
  .cat-grid--media .cat-card--media .cat-card__media,
  #supply .cat-grid--media a.cat-card--media:first-child .cat-card__media {
    width: 104px;
    min-width: 104px;
    max-width: 104px;
    height: 72px;
    grid-column: 1;
    grid-row: 1 / span 3;
  }
  .cat-grid--media .cat-card--media h3 { grid-column: 2; grid-row: 1; }
  .cat-grid--media .cat-card--media p { grid-column: 2; grid-row: 2; }
  .cat-grid--media .cat-card--media .cat-card__meta {
    grid-column: 2;
    grid-row: 3;
    align-items: flex-start;
    text-align: left;
  }
  .cat-grid--media .cat-card--media .cat-card__meta .price {
    white-space: normal;
  }
}

/* /catalog/: 3-up photo groups like the Beloostrov price page, sashino tokens */
.cat-grid.cat-grid--shop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  background: transparent;
  border: 0;
}
.cat-grid--shop a.cat-card--media {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  align-items: stretch;
  gap: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--white);
}
.cat-grid--shop a.cat-card--media:last-child { border-bottom: 1px solid var(--line); }
.cat-grid--shop a.cat-card--media:active { transform: scale(0.97); }
.cat-grid--shop .cat-card--media .cat-card__media {
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  border: 0;
  grid-column: auto;
  grid-row: auto;
  background: var(--sand);
}
.cat-grid--shop .cat-card--media .cat-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: 50% 40%;
}
.cat-grid--shop .cat-card--media .cat-card__body {
  display: flex;
  flex-direction: column;
  padding: 0.95rem 1.1rem 1.1rem;
  gap: 0.3rem;
}
.cat-grid--shop .cat-card--media h3,
.cat-grid--shop .cat-card--media p,
.cat-grid--shop .cat-card--media .cat-card__meta {
  grid-column: auto;
  grid-row: auto;
}
.cat-grid--shop .cat-card--media h3 { font-size: var(--fs-h3, 1.15rem); }
.cat-grid--shop .cat-card--media p {
  font-size: 0.9rem;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  min-height: calc(1.45em * 3);
  max-height: none;
  flex: 1;
}
.cat-grid--shop .cat-card--media .cat-card__meta {
  margin-top: 0.55rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line-soft);
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  text-align: left;
  gap: 8px;
}
.cat-grid--shop .cat-card--media .cat-card__meta .price {
  font-size: 1.08rem;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .cat-grid--shop a.cat-card--media:hover { background: var(--white); border-color: var(--steel-3); }
}
@media (max-width: 860px) {
  .cat-grid.cat-grid--shop { grid-template-columns: 1fr; }
  .cat-grid--shop .cat-card--media .cat-card__media {
    aspect-ratio: auto;
    height: auto;
  }
  .cat-grid--shop .cat-card--media .cat-card__media img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: unset;
  }
}
@media (max-width: 560px) {
  .cat-grid.cat-grid--shop {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .cat-grid--shop a.cat-card--media {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .cat-grid--shop .cat-card--media .cat-card__media {
    width: auto;
    min-width: 0;
    max-width: none;
    aspect-ratio: auto;
    align-self: stretch;
  }
  .cat-grid--shop .cat-card--media .cat-card__body { padding: 0.7rem 0.85rem 0.75rem; }
  .cat-grid--shop .cat-card--media h3 { font-size: 1.12rem; }
  .cat-grid--shop .cat-card--media p {
    font-size: 0.84rem;
    line-height: 1.35;
    -webkit-line-clamp: 3;
    min-height: 0;
    max-height: none;
    flex: none;
  }
  .cat-grid--shop .cat-card--media .cat-card__meta {
    margin-top: auto;
    padding-top: 0.4rem;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  .cat-grid--shop .cat-card--media .cat-card__meta .price {
    font-size: 1rem;
    white-space: nowrap;
  }
}
@media (max-width: 360px) {
  .cat-grid--shop .cat-card--media .cat-card__media {
    width: auto;
    min-width: 0;
    max-width: none;
  }
}

/* Round 2 primary: ledger index — TTN sheet, not a spreadsheet of leftover thumbs */
.cat-index {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
}
.cat-index__head {
  display: flex;
  align-items: flex-end;
  padding: 1.05rem 1.15rem 0.95rem;
  border-bottom: 1px solid var(--line);
}
.cat-index__origin {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.cat-index__origin strong {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.cat-index__origin span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.cat-index__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 0.85rem 1.05rem;
  align-items: center;
  min-height: var(--tap);
  min-width: 0;
  padding: 0.85rem 1.1rem;
  color: inherit;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}
.cat-index__row:last-child { border-bottom: 0; }
.cat-index__row:active { transform: scale(0.97); }
.cat-index__media {
  display: block;
  grid-column: 1;
  grid-row: 1 / -1;
  width: 7.5rem;
  height: 5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sand);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-s);
}
.cat-index__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  display: block;
}
.cat-index__row--tovarnyy-beton .cat-index__media img { object-position: 50% 48%; }
.cat-index__row--beton-s-pmd .cat-index__media img { object-position: 50% 42%; }
.cat-index__row--rastvory .cat-index__media img { object-position: 50% 42%; }
.cat-index__row--keramzitobeton .cat-index__media img { object-position: 50% 50%; }
.cat-index__row--armatura .cat-index__media img { object-position: 50% 50%; }
.cat-index__row--arenda-abn .cat-index__media img { object-position: 50% 38%; }
.cat-index__copy {
  grid-column: 2;
  min-width: 0;
}
.cat-index__copy h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.cat-index__copy p {
  margin: 0.18rem 0 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-index__price {
  grid-column: 3;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
  text-align: right;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  gap: 3px;
  line-height: 1.2;
}
.cat-index__from { display: block; }
.cat-index__price small,
.cat-index__count {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.cat-index__go {
  grid-column: 4;
  color: var(--accent);
  justify-self: end;
}
.cat-index__row--lead {
  padding: 1.1rem 1.15rem;
  background: var(--paper);
  align-items: stretch;
}
.cat-index__row--lead .cat-index__media {
  width: 12.5rem;
  height: 7.8rem;
  align-self: center;
}
.cat-index__row--lead .cat-index__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cat-index__row--lead .cat-index__copy h3 { font-size: var(--fs-h3); }
.cat-index__row--lead .cat-index__copy p { -webkit-line-clamp: 3; }
.cat-index__row--lead .cat-index__price { font-size: 1.18rem; align-self: start; }
@media (hover: hover) and (pointer: fine) {
  .cat-index__row:hover {
    background: var(--sand);
    box-shadow: inset 2px 0 0 var(--accent);
  }
  .cat-index__row:hover .cat-index__copy h3 { color: var(--accent-dark); }
}
.cat-index__row:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
  z-index: 1;
}
@media (max-width: 720px) {
  .cat-index__head { padding: 0.9rem 0.85rem 0.8rem; }
  .cat-index__row,
  .cat-index__row--lead {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 0.7rem;
    row-gap: 0.2rem;
    padding: 0.75rem 0.75rem;
  }
  .cat-index__media {
    width: 6.75rem;
    height: 4.55rem;
    grid-row: 1 / span 2;
  }
  .cat-index__row--lead .cat-index__media {
    width: 8.25rem;
    height: 5.5rem;
  }
  .cat-index__copy { grid-column: 2; grid-row: 1; }
  .cat-index__go { grid-column: 3; grid-row: 1; align-self: start; margin-top: 0.2rem; }
  .cat-index__price {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: start;
    align-items: flex-start;
    text-align: left;
    white-space: normal;
    font-size: 0.98rem;
  }
  .cat-index__from { white-space: normal; }
}
@media (max-width: 380px) {
  .cat-index__media {
    width: 5.75rem;
    height: 3.9rem;
  }
  .cat-index__row--lead .cat-index__media {
    width: 6.75rem;
    height: 4.55rem;
  }
}

/* Home/about assortment: each group is a print + ticket, same as товарный бетон. */
.cat-index--board {
  overflow: hidden;
}
.cat-index__ticket {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
}
.cat-index--board .cat-index__cols {
  display: none;
}
.cat-index--board .cat-index__row {
  display: grid;
  grid-template-columns: minmax(16rem, 26rem) minmax(0, 1fr) 1.5rem;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: var(--white);
}
.cat-index--board .cat-index__media {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: auto;
  align-self: stretch;
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 6px;
  overflow: hidden;
}
.cat-index--board .cat-index__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cat-index--board .cat-index__ticket {
  grid-column: 2;
  padding: var(--space-5);
}
.cat-index--board .cat-index__copy {
  display: contents;
}
.cat-index--board .cat-index__copy h3 {
  font-size: var(--fs-h3);
  order: 1;
  grid-column: auto;
  grid-row: auto;
}
.cat-index--board .cat-index__copy p {
  display: block;
  -webkit-line-clamp: 4;
  overflow: hidden;
  max-width: none;
  margin-top: 0;
  order: 3;
  grid-column: auto;
  grid-row: auto;
}
.cat-index--board .cat-index__price {
  grid-column: auto;
  order: 2;
  align-self: start;
  align-items: baseline;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.3rem 0.7rem;
  text-align: left;
  justify-self: start;
  font-size: 1.12rem;
}
.cat-index--board .cat-index__go {
  grid-column: 3;
  align-self: start;
  margin: var(--space-5) var(--space-4) 0 0;
}
.cat-index--board .cat-index__row:active { transform: none; }
@media (hover: hover) and (pointer: fine) {
  .cat-index--board .cat-index__row:hover {
    background: var(--white);
  }
  .cat-index--board .cat-index__row:hover .cat-index__ticket {
    background: var(--sand);
  }
}
@media (max-width: 860px) {
  .cat-index--board .cat-index__cols { display: none; }
  .cat-index--board .cat-index__row {
    grid-template-columns: minmax(0, 1fr) 1.5rem;
    grid-template-rows: auto auto;
  }
  .cat-index--board .cat-index__media {
    grid-column: 1 / -1;
    grid-row: 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    max-width: none;
    width: 100%;
    height: auto;
  }
  .cat-index--board .cat-index__ticket {
    grid-column: 1;
    grid-row: 2;
    padding: var(--space-4);
  }
  .cat-index--board .cat-index__go {
    grid-column: 2;
    grid-row: 2;
    margin: var(--space-4) var(--space-3) 0 0;
  }
}

.group-nav {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}
.group-nav__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.group-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.group-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--steel);
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .group-nav__list a:hover { border-color: var(--steel-3); background: var(--sand); }
}

.group-more {
  margin-top: var(--space-5);
  background: var(--white);
  border: 1px solid var(--line);
}
.group-more summary {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0.7rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.group-more summary::-webkit-details-marker { display: none; }
.group-more[open] summary { border-bottom: 1px solid var(--line); }
.group-more .group-nav {
  margin: 0;
  padding: var(--space-4);
  border: 0;
}
.group-more .cat-index,
.group-more .about-lineup { border: 0; }
.group-more .cat-grid { padding: var(--space-4); }

/* ---------- Split panel ---------- */
.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.split-panel__media { border-radius: var(--radius-m); overflow: hidden; box-shadow: none; border: 1px solid var(--line); }
.split-panel__media img { width: 100%; height: auto; object-fit: unset; }
.split-panel--rev { direction: rtl; }
.split-panel--rev > * { direction: ltr; }
.docs-facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin: var(--space-5) 0; }
.docs-fact { display: flex; flex-direction: column; gap: 6px; }
.docs-fact .icon { color: var(--accent-dark); }
.docs-fact p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
@media (max-width: 860px) { .split-panel { grid-template-columns: 1fr; } .docs-facts { grid-template-columns: 1fr; } }

/* ---------- Home about: ticket sheet + inset print ---------- */
.about-band { padding: var(--space-7) 0; background: var(--paper); }
.about-pack {
  background: var(--white);
  border: 1px solid var(--line);
}
.about-sheet {
  padding: var(--space-4) var(--space-5);
}
.about-sheet__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-sheet__copy > .about-sheet__print {
  width: 100%;
  height: auto;
  min-height: 0;
  margin: var(--space-3) 0 var(--space-4);
  overflow: visible;
}
.about-sheet__copy h2 { margin: 0; }
.about-sheet__copy .section-lead {
  margin: 0;
  max-width: none;
}
.about-sheet__copy .btn { margin-top: 0.15rem; align-self: start; }
.about-sheet__print {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 5px;
  line-height: 0;
}
.about-sheet__print img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
}
@media (min-width: 861px) {
  .about-sheet__copy {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 28rem);
    grid-template-rows: repeat(6, auto);
    column-gap: var(--space-5);
    row-gap: 0.55rem;
    align-items: start;
  }
  .about-sheet__copy > *:not(.about-sheet__print) { grid-column: 1; }
  .about-sheet__copy > .about-sheet__print {
    grid-column: 2;
    grid-row: 1 / -1;
    margin: 0;
    align-self: stretch;
    height: 0;
    min-height: 100%;
    overflow: hidden;
  }
  .about-sheet__print img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
  }
}
.about-band .docs-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
}
.about-band .docs-fact {
  padding: var(--space-4) var(--space-5);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.about-band .docs-fact:last-child { border-right: 0; }
.about-band .docs-fact h3 { margin-bottom: 4px; font-size: 1rem; }
@media (max-width: 720px) {
  .about-sheet { grid-template-columns: 1fr; }
  .about-sheet__copy h2 { margin-bottom: var(--space-2); }
  .about-sheet__copy .section-lead { margin-bottom: 0; }
  .about-band .docs-facts { grid-template-columns: 1fr; }
  .about-band .docs-fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-band .docs-fact:last-child { border-bottom: 0; }
}

/* ---------- Delivery teaser / zones ---------- */
.delivery-cluster { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: stretch; }
.delivery-cluster__media { border-radius: var(--radius-m); overflow: hidden; box-shadow: none; position: relative; border: 1px solid var(--line); }
.delivery-cluster__media img { width: 100%; height: auto; object-fit: unset; }
.delivery-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.zone-sheet {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
}
.zone-sheet__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 1.15rem var(--space-5) 1.05rem;
  border-bottom: 1px solid var(--line);
}
.zone-sheet__origin {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.zone-sheet__origin strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.zone-sheet__origin span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.zone-sheet__head .btn { flex-shrink: 0; }
.zone-sheet__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-width: 0;
}
.zone-sheet__routes,
.zone-sheet__near { min-width: 0; }
.zone-sheet__routes { border-right: 1px solid var(--line); }
.zone-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  column-gap: var(--space-3);
  align-items: center;
  padding: 1.05rem var(--space-5);
  min-height: 4.75rem;
  border-bottom: 1px solid var(--line);
  color: inherit;
  position: relative;
  transition: background-color 160ms ease, color 160ms ease;
}
.zone-route:last-child { border-bottom: 0; }
.zone-route__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.zone-route__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.zone-route__km {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
}
.zone-route__eta { font-size: 0.88rem; color: var(--ink-soft); }
.zone-route .icon { color: var(--accent); }
.zone-route:focus-visible { outline-offset: -3px; z-index: 1; }
@media (hover: hover) and (pointer: fine) {
  .zone-route:hover { background: var(--paper); }
  .zone-route:hover .zone-route__name { color: var(--accent-dark); }
}
.zone-sheet__near {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.zone-sheet__near ul {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 0;
}
.zone-sheet__near li {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.zone-sheet__near li:nth-child(2n) { border-right: 0; }
.zone-sheet__near li:nth-child(n + 3) { border-bottom: 0; }
.zone-sheet__stamps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}
.zone-sheet__stamps > div {
  padding: 0.95rem var(--space-5) 1.05rem;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.zone-sheet__stamps > div:last-child { border-right: 0; }
.zone-sheet__stamps dt {
  margin: 0 0 0.2rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
}
.zone-sheet__stamps dd {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--ink-soft);
  text-wrap: pretty;
}
@media (max-width: 860px) {
  .zone-sheet__head {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
  }
  .zone-sheet__head .btn { width: 100%; }
  .zone-sheet__grid { grid-template-columns: 1fr; }
  .zone-sheet__routes { border-right: 0; border-bottom: 1px solid var(--line); }
  .zone-sheet__stamps { grid-template-columns: 1fr; }
  .zone-sheet__stamps > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: var(--space-5);
  }
  .zone-sheet__stamps > div:last-child { border-bottom: 0; }
}
.fact-list { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; color: var(--ink-soft); }
.fact-list li { display: flex; gap: 8px; align-items: flex-start; }
.fact-list .icon { color: var(--accent-dark); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 860px) { .delivery-cluster { grid-template-columns: 1fr; } }

/* ---------- Conditions / trust: 1+2 split (not three equal photo-cards) ---------- */
.conditions-grid,
.conditions-split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-4);
}
.conditions-grid > :first-child,
.conditions-split > :first-child {
  grid-row: 1 / span 2;
}
.condition-card { background: var(--white); border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; height: 100%; }
.conditions-grid > :first-child .condition-card__media,
.conditions-split > :first-child .condition-card__media { aspect-ratio: 4 / 5; }
.condition-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.condition-card__media img { width: 100%; height: 100%; object-fit: cover; }
.condition-card__body { padding: var(--space-4); }
.condition-card__body p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
.conditions-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); background: var(--white); }
.conditions-list__item {
  display: grid; grid-template-columns: 5.5rem minmax(0, 1fr); gap: var(--space-4);
  padding: var(--space-4); border-bottom: 1px solid var(--line-soft); align-items: center;
}
.conditions-list__item:last-child { border-bottom: 0; }
.conditions-list__item img { width: 5.5rem; height: 4.25rem; object-fit: cover; border-radius: var(--radius-s); }
@media (max-width: 860px) {
  .conditions-grid,
  .conditions-split { grid-template-columns: 1fr; grid-template-rows: none; }
  .conditions-grid > :first-child,
  .conditions-split > :first-child { grid-row: auto; }
  .conditions-grid > :first-child .condition-card__media,
  .conditions-split > :first-child .condition-card__media { aspect-ratio: 16 / 10; }
}

.trust-split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}
.trust-split__main,
.trust-split__row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.trust-split__main { display: flex; flex-direction: column; }
.trust-split__aside { display: flex; flex-direction: column; gap: var(--space-4); min-width: 0; }
.trust-split__main .trust-split__media { aspect-ratio: 4 / 3; overflow: hidden; }
.trust-split__row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  align-items: stretch;
}
.trust-split__row .trust-split__media { min-height: 6.5rem; overflow: hidden; }
.trust-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trust-split__body { padding: var(--space-4); }
.trust-split__body h3 { margin-bottom: 4px; }
.trust-split__body p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

.spec-ledger {
  background: var(--white);
  border: 1px solid var(--line);
}
.spec-ledger__row {
  display: grid;
  grid-template-columns: minmax(11rem, 16.5rem) minmax(0, 1fr);
  column-gap: var(--space-6);
  align-items: baseline;
  padding: 1.15rem var(--space-5);
  border-bottom: 1px solid var(--line);
}
.spec-ledger__row:last-child { border-bottom: 0; }
.spec-ledger__row h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.spec-ledger__row p {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-soft);
}

/* Mid-page ledger + native portrait stamp on one sheet (not 100vw, not cover-crop). */
.sheet-desk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 26rem);
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.sheet-desk .spec-ledger,
.sheet-desk .waybill-steps {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sheet-desk .spec-ledger__row,
.sheet-desk .waybill-steps > li {
  flex: 1 1 auto;
  align-items: center;
}
.sheet-desk .spec-ledger__row p {
  max-width: none;
}
.sheet-desk__print {
  margin: 0;
  min-width: 0;
  align-self: stretch;
  background: var(--paper);
  border-left: 1px solid var(--line);
  padding: 6px;
  line-height: 0;
}
.sheet-desk__print img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 860px) {
  .trust-split { grid-template-columns: 1fr; }
  .trust-split__row { grid-template-columns: 6.25rem minmax(0, 1fr); }
  .trust-split__main .trust-split__media {
    aspect-ratio: auto;
    height: auto;
  }
  .trust-split__main .trust-split__media img {
    height: auto;
    object-fit: unset;
  }
  .sheet-desk {
    grid-template-columns: 1fr;
  }
  .sheet-desk .spec-ledger__row,
  .sheet-desk .waybill-steps > li {
    flex: 0 0 auto;
    align-items: start;
  }
  .sheet-desk__print,
  .sheet-desk__print--portrait {
    border-left: 0;
    border-top: 1px solid var(--line);
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
  .sheet-desk__print img,
  .sheet-desk__print--portrait img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
}
@media (max-width: 720px) {
  .spec-ledger__row {
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: var(--space-4) var(--space-5);
  }
}

/* ---------- Process: vertical waybill checklist, not five equal tiles ---------- */
.process-list,
.process-list--checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.process-tile {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  padding: var(--space-4) var(--space-5);
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  column-gap: var(--space-4);
  align-items: start;
}
.process-tile:last-child { border-bottom: 0; }
.process-tile__num {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem;
  color: var(--accent); display: block; margin-bottom: 0; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; grid-row: 1 / span 2;
}
.process-tile h3 { font-size: 1rem; margin-bottom: 4px; }
.process-tile p { margin: 0; font-size: 0.86rem; color: var(--ink-soft); }
@media (max-width: 560px) {
  .process-tile { grid-template-columns: 2.5rem minmax(0, 1fr); padding: var(--space-3) var(--space-4); }
}

.waybill-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.waybill-steps > li {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  column-gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.waybill-steps > li:last-child { border-bottom: 0; }
.waybill-steps__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.waybill-steps__body h3 { font-size: 1rem; margin-bottom: 4px; }
.waybill-steps__body p { margin: 0; font-size: 0.86rem; color: var(--ink-soft); }
@media (max-width: 560px) {
  .waybill-steps > li { grid-template-columns: 2.5rem minmax(0, 1fr); padding: var(--space-3) var(--space-4); }
}

/* Home process: five steps on one sheet, no stamp. */
#process .waybill-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
#process .waybill-steps > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: var(--space-5) var(--space-4);
  border-bottom: 0;
  border-right: 1px solid var(--line-soft);
}
#process .waybill-steps > li:last-child {
  border-right: 0;
  border-bottom: 0;
}
#process .waybill-steps__num {
  font-size: 1.35rem;
  line-height: 1;
}
@media (max-width: 900px) {
  #process .waybill-steps { grid-template-columns: 1fr; }
  #process .waybill-steps > li {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    column-gap: var(--space-4);
    align-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: var(--space-4) var(--space-5);
  }
  #process .waybill-steps > li:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  #process .waybill-steps > li {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    padding: var(--space-3) var(--space-4);
  }
}

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: var(--space-4); margin: 0; display: flex; flex-direction: column; gap: 8px; box-shadow: none; }
.review-card__stars { color: var(--accent); letter-spacing: 2px; font-size: 0.85rem; }
.review-card__text { margin: 0; font-size: 0.92rem; color: var(--ink); line-height: 1.45; }
.review-card__meta { font-size: 0.8rem; color: var(--ink-soft); font-style: normal; }
.review-card__meta cite { font-style: normal; font-weight: 600; color: var(--ink); }
.review-card__src { display: block; margin-top: 2px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.4px; }
.reviews-all { grid-column: 1 / -1; margin: 0; font-size: 0.9rem; }
.reviews-all a { font-weight: 600; }
.reviews-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
  gap: var(--space-5);
  align-items: stretch;
}
.reviews-map {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  min-height: 420px;
}
.reviews-map__frame { position: relative; flex: 1; min-height: 360px; background: var(--sand); }
.reviews-map__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reviews-map__bar { padding: var(--space-4); border-top: 1px solid var(--line-soft); }
.reviews-map__rating { margin: 0; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.reviews-map__rating strong { color: var(--accent-dark); font-variant-numeric: tabular-nums; }
.reviews-map__rating .rating-badge__stars { font-size: 0.9rem; }
.reviews-map__meta { margin: 4px 0 8px; font-size: 0.85rem; color: var(--ink-soft); }
.reviews-map__link { font-size: 0.9rem; font-weight: 600; }
.rating-badge { display: inline-flex; align-items: center; gap: var(--space-3); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: var(--space-4) var(--space-5); }
.rating-badge__num { font-family: var(--font-heading); font-weight: 700; font-size: 2rem; color: var(--steel); font-variant-numeric: tabular-nums; }
.rating-badge__stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.rating-badge__meta { font-size: 0.85rem; color: var(--ink-soft); }
.rating-badge__meta a { color: var(--steel-3); text-decoration: underline; text-underline-offset: 0.15em; }
@media (max-width: 900px) {
  .reviews-split { grid-template-columns: 1fr; }
  .reviews-map { order: 2; min-height: 0; }
  .reviews-map__frame { min-height: 260px; }
}
@media (max-width: 700px) { .review-grid { grid-template-columns: 1fr; } }

.rating-stamp {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: var(--space-5);
}
.rating-stamp__score {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 2rem + 2vw, 3.25rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--accent-dark);
}
.rating-stamp__stars {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-top: 0.4rem;
}
.rating-stamp__copy h2 { margin-bottom: 4px; }
.rating-stamp__copy .section-lead { margin-bottom: var(--space-3); }
.rating-stamp__link { font-weight: 700; }
.map-strip {
  margin: var(--space-5) 0 0;
  background: var(--white);
  border: 1px solid var(--line);
}
.map-strip iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}
.map-strip figcaption {
  margin: 0;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--sand);
}
@media (max-width: 640px) {
  .rating-stamp { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* ---------- FAQ ---------- */
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none;
  padding: var(--space-4) 0; min-height: 48px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-3);
  cursor: pointer; color: var(--ink);
}
.accordion-trigger svg { transition: transform 180ms var(--ease-out); flex-shrink: 0; color: var(--accent-dark); }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-panel { max-height: none; overflow: visible; }
html.js .accordion-panel { max-height: 0; overflow: hidden; transition: max-height 220ms var(--ease-out); }
html.js .accordion-panel.is-open { max-height: 640px; }
.accordion-panel__inner { padding: 0 0 var(--space-4); font-size: 0.94rem; color: var(--ink-soft); }
@media (max-width: 860px) { .faq-columns { grid-template-columns: 1fr; } }

/* ---------- Order form ---------- */
.order-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-6); align-items: start; min-width: 0; }
.order-aside {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  min-width: 0;
}
.order-aside .section-eyebrow { color: var(--accent-dark); }
.order-aside h2 { color: var(--ink); }
.order-aside__label {
  margin: 0 0 var(--space-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.order-aside__phone { display: flex; flex-direction: column; gap: 2px; min-height: var(--tap); }
.order-aside__phone-num { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; color: var(--ink); }
.order-aside__phone-label { font-size: 0.8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.5px; }
.order-aside .fact-list { color: var(--ink-soft); }
.order-aside .fact-list .icon { color: var(--accent); }
.order-aside a { color: inherit; }
.contact-icon-row { display: flex; gap: var(--space-3); }
.contact-icon {
  width: 46px; height: 46px; border-radius: var(--radius-s);
  background: var(--sand); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--steel);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact-icon:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
}
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 0.85rem; }
.pay-item { display: flex; align-items: center; gap: 6px; background: var(--sand); border-radius: var(--radius-s); padding: 8px 10px; }
.order-map { border-radius: var(--radius-m); overflow: hidden; height: 220px; position: relative; }
.order-map iframe { width: 100%; height: 100%; border: 0; }
.page-contacts .order-map { height: 280px; }

.order-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: var(--space-6); box-shadow: none; min-width: 0; }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
.order-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field__req { color: var(--accent-dark); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 0.7rem 0.85rem;
  border: 1px solid var(--line); border-radius: var(--radius-s);
  background: #fff; color: var(--ink); width: 100%; min-height: var(--tap);
}
.field textarea { min-height: 5.5rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #5a6a78; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--focus); outline-offset: 1px; }
.field input.is-invalid, .field select.is-invalid { border-color: var(--warn); }
.field__error { display: none; font-size: 0.8rem; color: var(--warn); }
.field__error.is-visible { display: block; }
.field-unit { position: relative; }
.field-unit input { padding-right: 2.6rem; }
.field-unit__suffix { position: absolute; right: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--ink-soft); font-size: 0.9rem; pointer-events: none; }
.field-phone { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-s); overflow: hidden; background: #fff; min-height: var(--tap); }
.field-phone__prefix { padding: 0 0 0 0.85rem; color: var(--ink-soft); font-weight: 600; }
.field-phone input { border: none; min-height: var(--tap); }
.field-phone input:focus { outline: none; }
.field-phone:focus-within { outline: 2px solid var(--focus); outline-offset: 1px; }
.hp-field { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: var(--space-4) 0; font-size: 0.84rem; color: var(--ink-soft); }
.consent input { margin-top: 3px; width: 22px; height: 22px; min-width: 22px; flex-shrink: 0; accent-color: var(--accent); }
.consent a { color: var(--steel-3); text-decoration: underline; text-underline-offset: 0.15em; }
.captcha-field { margin-bottom: var(--space-4); max-width: 22rem; }
.captcha-field__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.captcha-field__q { color: var(--accent-dark); font-weight: 700; }
.captcha-field__refresh {
  background: none; border: none; color: var(--steel-3); font-size: 0.8rem;
  text-decoration: underline; text-underline-offset: 0.15em; cursor: pointer;
  padding: 8px 4px; min-height: var(--tap);
}
.order-form__note { font-size: 0.8rem; color: var(--ink-soft); margin-top: var(--space-3); }
.order-form__note a { color: var(--steel-3); text-decoration: underline; }
.order-form__actions { display: flex; flex-direction: column; gap: var(--space-3); }
.order-form__alt { display: flex; flex-wrap: wrap; gap: 8px; }
.order-form__alt .btn { flex: 1 1 8rem; }
.consent.is-invalid { outline: 1px solid var(--warn); outline-offset: 4px; border-radius: var(--radius-s); }
.captcha-row { display: flex; align-items: center; gap: 10px; }
.captcha-row .captcha-input { flex: 1; min-width: 0; }
.price-note--vat { font-weight: 600; color: var(--ink); margin: 0.35rem 0 0; }
.form-status { margin-top: var(--space-3); font-size: 0.92rem; display: none; align-items: center; gap: 8px; padding: 10px 14px; border-radius: var(--radius-s); }
.form-status.is-visible { display: flex; }
.form-status--success { background: #e6f4ea; color: var(--ok); }
.form-status--error { background: #fbe6e0; color: var(--warn); }
.order-seg { display: flex; gap: 8px; }
.order-seg__opt {
  position: relative; flex: 1; text-align: center; border: 1px solid var(--line);
  border-radius: var(--radius-s); padding: 8px; cursor: pointer; font-size: 0.85rem;
  min-height: var(--tap); display: flex; align-items: center; justify-content: center;
}
.order-seg__opt input { position: absolute; opacity: 0; inset: 0; margin: 0; width: 100%; height: 100%; }
.order-seg__opt:has(input:checked) { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-dark); font-weight: 700; }
.order-seg__opt:focus-within { outline: 2px solid var(--focus); outline-offset: 1px; }

@media (max-width: 960px) { .order-section { grid-template-columns: 1fr; } }
@media (max-width: 620px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-card, .order-aside { padding: var(--space-5); }
  .order-seg { flex-direction: column; }
}
@media (max-width: 400px) {
  .order-card, .order-aside { padding: var(--space-4); }
  .order-aside__phone-num { font-size: 1.28rem; }
}

/* ---------- CTA banner: paper sheet, not a second dark slab ---------- */
.cta-banner {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-m);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
}
.cta-banner h2 { color: var(--ink); margin-bottom: 4px; }
.cta-banner p { color: var(--ink-soft); margin: 0; max-width: 46ch; }
.cta-banner__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.cta-banner .btn-ghost-light {
  background: var(--white);
  color: var(--steel);
  border-color: var(--line);
}
@media (hover: hover) and (pointer: fine) {
  .cta-banner .btn-ghost-light:hover {
    background: var(--sand);
    border-color: var(--steel-3);
    color: var(--steel);
  }
}
@media (max-width: 560px) {
  .cta-banner { padding: var(--space-5); }
  .cta-banner__actions { width: 100%; }
  .cta-banner__actions .btn { flex: 1 1 auto; }
}

/* ---------- Inner page heads: ticket + inset print ---------- */
.page-head { padding: var(--space-7) 0 0; }
.page-head .field__label { margin-top: var(--space-4); }
.page-head h1 { max-width: min(18em, 100%); }
.page-head .section-lead { max-width: min(40rem, 62ch); margin-bottom: var(--space-4); }
.page-head:not(:has(.page-head__media)):not(:has(.page-head__strip)):not(:has(.page-head__print)) {
  padding-bottom: var(--space-5);
}

.page-head--ticket { padding: 0 0 var(--space-6); }
.page-head__desk {
  padding-top: var(--space-7);
  padding-bottom: var(--space-5);
}
.page-head__desk--print {
  display: block;
}
.page-head--ticket .page-head__copy {
  padding: 0;
  min-width: 0;
}
.page-head__desk--print .page-head__copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.page-head__desk--print .page-head__copy > .page-head__print {
  width: 100%;
  height: auto;
  min-height: 0;
  margin: var(--space-3) 0 var(--space-4);
  overflow: visible;
}
.page-head__desk--print .page-head__copy h1 {
  margin: 0;
  max-width: none;
}
.page-head__desk--print .page-head__copy .section-lead {
  margin: 0;
  max-width: none;
}
.page-head__desk--print .page-head__print img {
  width: 100%;
  height: auto;
  object-fit: unset;
}
@media (min-width: 861px) {
  .page-head__desk--print .page-head__copy {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 28rem);
    grid-template-rows: repeat(8, auto);
    column-gap: var(--space-5);
    row-gap: 0.55rem;
    align-items: start;
  }
  .page-head__desk--print .page-head__copy > *:not(.page-head__print) { grid-column: 1; }
  .page-head__desk--print .page-head__copy > .page-head__print {
    grid-column: 2;
    grid-row: 1 / -1;
    margin: 0;
    align-self: stretch;
    height: 0;
    min-height: 100%;
    overflow: hidden;
  }
  .page-head__desk--print .page-head__print img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
  }
}
.page-head__copy .hero__cta,
.page-head__copy .hero__facts,
.page-head__copy .rental-spec-grid { margin-top: var(--space-4); }

.page-head__print,
.page-head__strip {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px;
  min-width: 0;
  align-self: start;
  width: 100%;
  line-height: 0;
}
.page-head__print img,
.page-head__strip img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 860px) {
  .page-head__desk--print { grid-template-columns: 1fr; }
  .page-head__desk--print .page-head__copy > .page-head__print,
  .page-head__print,
  .page-head__strip,
  .page-head__print--portrait,
  .page-head__strip--portrait {
    max-width: none;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    align-self: stretch;
    margin: var(--space-3) 0 var(--space-4);
    overflow: visible;
    display: block;
  }
  .page-head__desk--print .page-head__print img,
  .page-head__print img,
  .page-head__strip img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
}

/* Product ticket continues the header stamp: one sheet, no paper void. */
@media (max-width: 720px) {
  .page-category .page-head--ticket,
  .page-grade .page-head--ticket {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding-bottom: 0;
  }
  .page-category .page-head__desk,
  .page-grade .page-head__desk {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
  }
  .page-category .page-head h1,
  .page-grade .page-head h1 {
    margin-bottom: var(--space-2);
    max-width: none;
  }
  .page-category .page-head .section-lead,
  .page-grade .page-head .section-lead {
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: var(--space-3);
    max-width: none;
  }
  .page-category .page-head__print,
  .page-category .page-head__print--portrait,
  .page-grade .page-head__print,
  .page-grade .page-head__print--portrait {
    width: calc(100% + var(--gutter-start) + var(--gutter-end));
    max-width: none;
    margin: var(--space-3) calc(-1 * var(--gutter-end)) var(--space-4) calc(-1 * var(--gutter-start));
    padding: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .page-category .page-head__copy .hero__cta,
  .page-grade .page-head__copy .hero__cta {
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    margin-top: 0;
    gap: var(--space-2);
  }
  .page-category .page-head__copy .hero__cta .btn,
  .page-grade .page-head__copy .hero__cta .btn {
    width: 100%;
    flex: 1 1 auto;
  }
  .page-category .page-head__copy .hero__cta .text-link,
  .page-grade .page-head__copy .hero__cta .text-link {
    align-self: center;
    min-height: var(--tap);
    display: inline-flex;
    align-items: center;
  }
}

/* Old 2-col head: single column, copy then strip-like media */
.page-head__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}
.page-head__media {
  width: 100%;
  max-width: 22rem;
  margin-left: 0;
  margin-right: 0;
  margin-top: var(--space-4);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  min-width: 0;
  height: auto;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: start;
  padding: 6px;
}
.page-head__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: unset;
  aspect-ratio: auto;
  display: block;
  margin: 0;
  background: transparent;
  border: 0;
  padding: 0;
}

/* /catalog/ split head — same composition as Beloostrov price page */
.page-head--split {
  padding: var(--space-6) 0 var(--space-5);
}
.page-head--split .page-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}
.page-head--split .page-head__media {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--sand);
  overflow: hidden;
}
.page-head--split .page-head__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 38%;
  display: block;
}
@media (max-width: 860px) {
  .page-head--split .page-head__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .page-head--split .page-head__grid > .reveal:not(.page-head__media) { display: contents; }
  .page-head--split .page-head__grid > .reveal:not(.page-head__media) > * { order: 5; }
  .page-head--split .page-head__grid > .reveal:not(.page-head__media) > h1 { order: 2; margin-bottom: 0; }
  .page-head--split .page-head__grid > .reveal:not(.page-head__media) > .section-lead { order: 3; }
  .page-head--split .page-head__media { order: 4; }
  .page-head--split .page-head__media img {
    aspect-ratio: auto;
    height: auto;
    object-fit: unset;
  }
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.compare-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: var(--space-4); color: inherit; display: flex; flex-direction: column; min-height: 100%; transition: border-color 160ms ease, box-shadow 160ms ease; }
.compare-card h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.4px; }
.compare-card p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
@media (hover: hover) and (pointer: fine) {
  a.compare-card:hover { border-color: var(--steel-3); }
}
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-3); align-items: center; }
.related-links__line { flex: 1 1 100%; margin: 0 0 2px; color: var(--ink); }
.related-links a {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 8px 16px; font-size: 0.88rem; font-weight: 600;
  min-height: var(--tap); display: inline-flex; align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .related-links a:hover { border-color: var(--accent); color: var(--accent-dark); }
}
@media (max-width: 860px) {
  .compare-grid { grid-template-columns: 1fr; }
}

.rental-spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: var(--space-4); margin: var(--space-5) 0; }
.rental-spec {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: var(--space-4); text-align: center;
  display: flex; flex-direction: column; height: 100%;
}
.rental-spec__val { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--steel); display: block; font-variant-numeric: tabular-nums; }
.rental-spec__label { font-size: 0.8rem; color: var(--ink-soft); }
@media (max-width: 860px) { .rental-spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px) { .rental-spec-grid { grid-template-columns: 1fr; } }

/* ---------- Legal pages ---------- */
.legal-content, .legal-doc { max-width: 48rem; }
.legal-content h2, .legal-doc h2 { margin-top: var(--space-6); margin-bottom: var(--space-3); }
.legal-content ol, .legal-content ul, .legal-doc ol, .legal-doc ul { padding-left: 1.4rem; margin-bottom: var(--space-3); display: flex; flex-direction: column; gap: 0.4rem; }
.legal-content ol, .legal-doc ol { list-style: decimal; }
.legal-content ul, .legal-doc ul { list-style: disc; }
.legal-content li, .legal-doc li { margin-bottom: 0; line-height: 1.55; }
.legal-content a, .legal-doc a { color: var(--steel-3); text-decoration: underline; text-underline-offset: 0.16em; }
.legal-doc p + p, .legal-doc ul + p, .legal-doc ol + p { margin-top: 0.85rem; }
.table-scroll-hint { font-size: 0.8rem; color: var(--ink-soft); margin: 0 0 6px; }
.legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin: var(--space-4) 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  max-width: 100%;
}
.legal-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 0.88rem; }
.legal-table th, .legal-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}
.legal-table th { background: var(--sand); font-family: var(--font-heading); font-weight: 600; }
.legal-table tr:last-child td { border-bottom: none; }
.page-hero { padding: var(--space-6) 0 var(--space-4); }
.page-head--stage,
.page-hero--stage,
.page-hero:has(.hero__stage),
.page-head:has(.hero__stage) {
  padding: 0;
  background: var(--paper);
}
.page-head--stage .hero__stage,
.page-hero--stage .hero__stage,
.page-hero:has(.hero__stage) .hero__stage,
.page-head:has(.hero__stage) .hero__stage {
  min-height: 0;
}
.page-head--stage .hero__overlay,
.page-hero--stage .hero__overlay,
.page-hero:has(.hero__stage) .hero__overlay,
.page-head:has(.hero__stage) .hero__overlay {
  min-height: 0;
  padding: var(--space-5) 0;
}
.waybill--compact { max-width: 32rem; }

.page-404 #main > .section-pad--lg { min-height: calc(70dvh - var(--header-h)); display: flex; align-items: center; }

/* ---------- Photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-3); }
.photo-strip figure { margin: 0; border-radius: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); padding: 4px; line-height: 0; }
.photo-strip img { width: 100%; height: auto; object-fit: unset; display: block; }
@media (max-width: 860px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

.stage-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.stage-strip figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 5px;
}
.stage-strip img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}
.stage-strip figcaption {
  margin: 0;
  padding: 0.55rem 0.2rem 0.15rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: transparent;
}
@media (max-width: 640px) {
  .stage-strip { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.photo-band { padding: var(--space-6) 0 var(--space-7); background: var(--paper); }
.photo-band .section-head,
.photo-band .dlv-section-head { margin-bottom: var(--space-5); }
.photo-teaser, .photo-grid { list-style: none; margin: 0; padding: 0; }
.photo-teaser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  align-items: stretch;
}
.photo-teaser--about { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-teaser .photo-card {
  min-width: 0;
  margin: 0;
}
.photo-teaser .photo-card__btn {
  height: 100%;
  aspect-ratio: 4 / 3;
}
.photo-teaser .photo-card__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.photo-teaser__more { margin: var(--space-5) 0 0; max-width: 100%; }
.photo-teaser__more .btn { max-width: 100%; }
.photo-grid {
  columns: 3;
  column-gap: var(--space-3);
}
.photo-card { margin: 0; }
.photo-grid .photo-card {
  break-inside: avoid;
  margin: 0 0 var(--space-3);
  display: block;
}
.photo-card__btn {
  display: block; width: 100%; padding: 5px; border: 1px solid var(--line); background: var(--white);
  border-radius: 0; overflow: hidden; cursor: zoom-in;
  position: relative; box-shadow: none;
}
.photo-card__btn img {
  width: 100%; height: auto; object-fit: unset;
  display: block;
}
.photo-card__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.photo-card__badge { display: none; }
.photo-card__cap { margin: 8px 0 0; font-size: 0.82rem; color: var(--ink-soft); }
.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-4); }
.gallery-filter {
  border: 1px solid var(--line); background: var(--white); border-radius: 2px;
  padding: 8px 12px; font-weight: 600; font-size: 0.88rem; cursor: pointer; color: var(--ink);
  min-height: var(--tap);
  display: inline-flex; align-items: center; gap: 6px;
}
.gallery-filter span { color: var(--ink-soft); font-weight: 500; }
.gallery-filter.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.gallery-filter.is-active span { color: #fff; }
.gallery-note, .gallery-source { font-size: 0.88rem; color: var(--ink-soft); }
.gallery-source { margin-top: var(--space-6); }
.photo-card.is-hidden { display: none; }
@media (hover: hover) and (pointer: fine) {
  .gallery-filter:hover { border-color: var(--steel-3); }
}
@media (max-width: 900px) {
  .photo-teaser,
  .photo-teaser--about { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-grid { columns: 2; }
}
@media (max-width: 720px) {
  .photo-teaser,
  .photo-teaser--about { grid-template-columns: 1fr; gap: var(--space-3); }
  .photo-teaser .photo-card__btn {
    aspect-ratio: auto;
    height: auto;
  }
  .photo-teaser .photo-card__btn img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .photo-grid { columns: 2; }
}
@media (max-width: 560px) {
  .photo-teaser,
  .photo-teaser--about { grid-template-columns: 1fr; }
  .photo-grid { columns: 2; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  overscroll-behavior: contain;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(16, 24, 32, 0.88); }
.lightbox__dialog {
  position: relative; z-index: 1; max-width: min(1100px, 100%); max-height: 100%;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px;
}
.lightbox__dialog figure { margin: 0; max-height: calc(100vh - 80px); }
.lightbox__dialog img {
  max-width: min(92vw, 1100px); max-height: calc(100vh - 120px);
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--radius-m); background: #1a2430;
}
.lightbox__dialog figcaption {
  color: #dfe6ea; font-size: 0.9rem; margin-top: 10px; text-align: center;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  border: 0; background: rgba(255,255,255,0.12); color: #fff;
  width: 48px; height: 48px; border-radius: var(--radius-s); font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close { position: absolute; top: 0; right: 0; z-index: 2; }
@media (hover: hover) and (pointer: fine) {
  .lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--accent); }
}
.lightbox__close:focus-visible, .lightbox__prev:focus-visible, .lightbox__next:focus-visible {
  background: var(--accent);
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (max-width: 700px) {
  .lightbox__dialog { grid-template-columns: 1fr; }
  .lightbox__prev, .lightbox__next {
    position: absolute; bottom: 8px; width: 44px; height: 44px;
  }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: 8px; right: 8px; }
  .lightbox__dialog figcaption { padding: 0 52px 48px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--steel);
  color: #c5ced3;
  padding: var(--space-7) 0 var(--space-5);
  border-top: 3px solid var(--accent);
}
.footer-stamp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4) var(--space-6);
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid rgba(238, 241, 243, 0.14);
}
.footer-stamp .brand { margin-right: 0; }
.footer-stamp .footer-brand { margin-bottom: 0; }
.footer-stamp p { margin: 0; max-width: 36ch; font-size: var(--fs-small); }
.footer-stamp .footer-hours { margin: 0; }
.footer-stamp a[href^="tel"],
.footer-stamp .link-phone {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-5); }
.footer-grid--links { grid-template-columns: repeat(3, 1fr); }
.footer-brand { margin-bottom: var(--space-3); }
.footer-col h3 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  text-underline-offset: 0.16em;
}
@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover { color: #fff; text-decoration: underline; }
}
.footer-hours { font-size: 0.85rem; color: #a9c9b0; font-weight: 600; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: var(--space-6);
  padding-top: var(--space-4); font-size: 0.82rem;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 0.16em; min-height: var(--tap); display: inline-flex; align-items: center; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid--links { grid-template-columns: repeat(3, 1fr); }
  .footer-stamp { align-items: flex-start; }
}
@media (max-width: 720px) {
  .footer-stamp {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid--links { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: none;
  padding: 10px max(10px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  gap: 10px;
}
.sticky-call__call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff; border-radius: var(--radius-s);
  font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px; min-height: 48px; font-size: 0.82rem;
}
.sticky-call__tg, .sticky-call__wa {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-s); background: var(--paper); color: var(--steel); border: 1px solid var(--line);
}
@media (max-width: 720px) {
  .sticky-call { display: flex; }
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
  .site-footer { padding-bottom: var(--space-6); }
}

/* ---------- Reveal: visible without JS / reduced motion ---------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
  animation: reveal-fallback 0s 1.8s forwards;
}
html.js .reveal.is-visible { opacity: 1; transform: none; animation: none; }
@keyframes reveal-fallback { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  .reveal { opacity: 1; transform: none; transition: none; }
  .photo-card__btn img { transition: none; }
  .cat-card--media .cat-card__media img { transition: none; transform: none; }
  .cat-index__row:active { transform: none; }
  html.js .accordion-panel { transition: none; }
}
@media (scripting: none) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.list-check { display: flex; flex-direction: column; gap: 8px; }
.list-check li { display: flex; gap: 8px; align-items: flex-start; }
.list-check .icon { color: var(--ok); flex-shrink: 0; margin-top: 3px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Превью прайса: кликабельные ряды + фото групп ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sku-desc { font-size: 0.85rem; display: inline-block; margin-top: 2px; line-height: 1.4; }
.price-table th.price-table__media-h { width: 96px; }
.price-table tbody tr.is-link td.price-table__media {
  padding: 8px 6px 8px 10px;
  width: 96px;
  vertical-align: middle;
}
.sku-thumb {
  display: block;
  width: 80px;
  height: 60px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid var(--line-soft);
}
.sku-thumb img {
  width: 80px;
  height: 60px;
  max-width: none;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .sku-thumb:hover { border-color: var(--steel-3); }
  .sku-thumb:hover img { transform: none; }
}
.sku-thumb:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.catalog-search { margin: var(--space-3) 0 0; max-width: 28rem; }
.catalog-search input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.catalog-search input:focus,
.catalog-search input:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
}
.catalog-search__empty { color: var(--warn); font-size: 0.9rem; margin-top: var(--space-2); }
.catalog-table-block { margin: 0 0 var(--space-6); }
.catalog-table-block h2 { font-size: var(--fs-h3); }
.catalog-table-block h2 a { color: var(--steel-3); text-decoration: underline; text-underline-offset: 0.16em; }
.price-table tbody tr[data-search-hidden] { display: none; }
.sku-preview {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(420px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  margin: auto;
}
.sku-preview::backdrop { background: rgba(36, 48, 56, 0.55); }
.sku-preview:focus { outline: none; }
.sku-preview__card {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-m);
  box-shadow: none;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 0 0 var(--space-5);
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
}
.sku-preview__img {
  width: 100%;
  height: auto;
  object-fit: unset;
  background: var(--sand);
  transform: none;
}
.sku-preview__title { margin: var(--space-4) var(--space-5) var(--space-2); font-size: 1.15rem; text-wrap: balance; }
.sku-preview__price {
  margin: 0 var(--space-5) var(--space-4);
  font-weight: 700;
  color: var(--accent-dark);
  font-variant-numeric: tabular-nums;
  font-size: 1.12rem;
}
.sku-preview__actions {
  display: flex;
  gap: var(--space-3);
  padding: 0 var(--space-5);
  flex-wrap: wrap;
}
.sku-preview__actions .btn { flex: 1 1 8rem; min-height: 48px; white-space: nowrap; }
@media (max-width: 430px) {
  .sku-thumb,
  .sku-thumb img { width: 64px; height: 48px; }
  .price-table th.price-table__media-h,
  .price-table tbody tr.is-link td.price-table__media { width: 80px; }
  .sku-preview__actions { flex-direction: column; }
  .sku-preview__actions .btn { flex: 1 1 auto; width: 100%; }
}


/* ==========================================================================
   Конфигуратор товара (.cfg) — поведение как у tosno, токены точки в Сашино
   ========================================================================== */
#configurator { scroll-margin-top: calc(var(--header-h) + 24px); }
.text-link {
  color: var(--steel-3);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .text-link:hover { color: var(--accent-dark); }
}
.block-head { max-width: 62ch; margin-bottom: var(--space-6); }
.block-head h2 { margin: 0 0 var(--space-3); }
.block-head p { margin: 0; color: var(--ink-soft); max-width: 62ch; }
.cfg__ops { display: flex; flex-direction: column; gap: var(--space-4); }
:root { --sticky-call-clearance: 12px; }
@media (max-width: 720px) {
  :root { --sticky-call-clearance: calc(88px + env(safe-area-inset-bottom, 0px)); }
}

/* ---- Конфигуратор: сетка «настройки + итог» ---- */
.cfg {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.cfg > * { min-width: 0; }
@media (max-width: 1020px) {
  .cfg { grid-template-columns: 1fr; }
}
.cfg__controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.cfg__aside {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
@media (max-width: 1020px) {
  .cfg__aside { position: static; }
}

/* ---- Блок одной характеристики ---- */
.cfg-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--white);
  padding: var(--space-4) var(--space-5) var(--space-5);
  margin: 0;
  min-width: 0;
  transition: border-color 0.22s ease;
}
.cfg-group__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.cfg-group__badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  padding: 0.15em 0.55em;
  border-radius: var(--radius-s);
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.cfg-group__badge--soft { background: var(--sand); color: var(--ink-soft); }
.cfg-group__badge--opt { background: var(--sand); color: var(--steel-2); }
.cfg-group__hint {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  margin: var(--space-2) 0 var(--space-4);
  max-width: 62ch;
}
.cfg-group__hint--quiet { color: var(--ink-soft); font-size: 0.75rem; margin-top: -0.5rem; }
.cfg-group__hint:last-child { margin-bottom: 0; }

@keyframes cfgAdjusted {
  0% { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(178, 58, 34, 0.22); }
  100% { border-color: var(--line); box-shadow: 0 0 0 3px rgba(178, 58, 34, 0); }
}
.cfg-group.is-adjusted { animation: cfgAdjusted 1.4s ease; }

/* ---- Фильтр длинных списков позиций ---- */
.cfg-filter {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0 0 var(--space-3);
}
.cfg-filter__field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  min-height: var(--tap);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--sand);
}
.cfg-filter__field:focus-within {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(178, 58, 34, 0.18);
}
.cfg-filter__field .icon { color: var(--ink-soft); flex: 0 0 auto; }
.cfg-filter__input {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  min-height: 2.5rem;
  color: var(--ink);
  outline: none;
}
.cfg-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.cfg-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35em 0.7em;
  border-radius: var(--radius-s);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
}
.cfg-chip.is-active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-dark);
}
.cfg-filter__meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.cfg-filter__empty {
  margin: var(--space-3) 0 0;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}
.cfg-options--scroll {
  max-height: min(52vh, 420px);
  overflow: auto;
  padding-right: 2px;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.cfg-group--many .cfg-opt__note { display: none; }

/* Мобильный док с итогом */
.cfg-dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(var(--sticky-call-clearance) + 8px);
  z-index: 40;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: var(--steel);
  color: #eef2f5;
  border-radius: var(--radius-l);
  box-shadow: none;
}
.cfg-dock.is-visible { display: flex; }
.cfg-dock__text {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cfg-dock__label {
  font-size: 0.75rem;
  color: rgba(238, 242, 245, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cfg-dock__total {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.15;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cfg-dock__spec {
  font-size: 0.75rem;
  color: rgba(238, 242, 245, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cfg-dock__cta {
  flex: 0 0 auto;
  padding-inline: 1.1em;
}
@media (min-width: 1021px) {
  .cfg-dock { display: none !important; }
}
body.has-cfg-dock {
  padding-bottom: calc(var(--sticky-call-clearance) + 4.75rem);
}

/* ---- Варианты выбора ---- */
.cfg-options { display: grid; gap: var(--space-2); min-width: 0; }
.cfg-options--grid { grid-template-columns: repeat(auto-fill, minmax(min(148px, 100%), 1fr)); }
.cfg-options--row { grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr)); }
@media (max-width: 640px) {
  .cfg-options--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cfg-group--many .cfg-options--grid { grid-template-columns: minmax(0, 1fr); }
  .cfg-opt { min-height: 54px; padding: 0.55rem 0.7rem 0.6rem; }
}
@media (max-width: 400px) {
  .cfg-group { padding: var(--space-4); }
}

.cfg-opt {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
  padding: 0.65rem 0.8rem 0.7rem;
  min-height: 62px;
  min-width: 0;
  overflow-wrap: anywhere;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  position: relative;
  transition: border-color 0.15s ease,
              background-color 0.15s ease,
              transform 0.15s ease;
}
.cfg-opt:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .cfg-opt:hover { border-color: var(--steel-3); background: var(--sand); }
}
.cfg-opt.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.cfg-opt.is-selected::after {
  content: "";
  position: absolute;
  inset: -1.5px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-s);
  pointer-events: none;
}
.cfg-opt__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.015em;
  line-height: 1.2;
}
.cfg-opt__sub { font-size: 0.75rem; color: var(--ink-soft); line-height: 1.35; }
.cfg-opt__note { font-size: 0.75rem; color: var(--ink-soft); font-style: italic; }
.cfg-opt__price {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: var(--fs-small);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent-dark);
}
.cfg-opt__price:empty { display: none; }
.cfg-opt.is-unpriced .cfg-opt__price { color: var(--ink-soft); font-weight: 500; font-size: 0.75rem; }

/* ---- Количество: шаговый ввод + ползунок + пресеты ---- */
.cfg-qty {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.cfg-qty--inline { margin-top: var(--space-4); }
.cfg-qty__step {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.15s ease,
              border-color 0.15s ease;
}
.cfg-qty__field {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0 0.85rem;
  height: 46px;
}
.cfg-qty__input {
  width: 4.5ch;
  border: none;
  background: none;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  padding: 0;
  align-self: stretch;
  min-height: 42px;
  -moz-appearance: textfield;
}
.cfg-qty__input::-webkit-outer-spin-button,
.cfg-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cfg-qty__input:focus { outline: none; }
.cfg-qty__field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(178, 58, 34, 0.18); }
.cfg-qty__unit { font-size: var(--fs-small); color: var(--ink-soft); align-self: center; }
.cfg-qty__hint { font-size: 0.75rem; color: var(--ink-soft); }

.cfg-range {
  width: 100%;
  margin: var(--space-4) 0 var(--space-3);
  accent-color: var(--accent);
  height: 22px;
}
.cfg-presets { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-3); }
.cfg-preset {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35em 0.75em;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  background: var(--sand);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
}
.cfg-preset.is-active { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-dark); }
@media (hover: hover) and (pointer: fine) {
  .cfg-chip:hover { border-color: var(--accent); color: var(--accent-dark); }
  .cfg-qty__step:hover { background: var(--sand); border-color: var(--accent); }
  .cfg-preset:hover { border-color: var(--accent); color: var(--accent-dark); }
}

/* ---- Переключатель подачи насосом ---- */
.cfg-switch {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-size: var(--fs-small);
  font-weight: 500;
  margin-top: var(--space-3);
}
.cfg-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.cfg-switch__box {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
  transition: all 0.15s ease;
}
.cfg-switch__box .icon { opacity: 0; color: #fff; width: 16px; height: 16px; stroke-width: 2.4; }
.cfg-switch input:checked + .cfg-switch__box { background: var(--accent); border-color: var(--accent); }
.cfg-switch input:checked + .cfg-switch__box .icon { opacity: 1; }
.cfg-switch input:focus-visible + .cfg-switch__box { outline: 2.5px solid var(--steel); outline-offset: 2px; }
.cfg-pump-body { margin-top: var(--space-4); }
.cfg-pump-body[hidden] { display: none; }

/* ---- Панель итога ---- */
.cfg-sum {
  background: var(--steel);
  color: #eef2f5;
  border-radius: var(--radius-l);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.cfg-sum::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cfg-sum > * { position: relative; }
.cfg-sum__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.cfg-sum__spec {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.2rem;
  line-height: 1.25;
}
.cfg-sum__detail {
  font-size: 0.75rem;
  color: rgba(238, 242, 245, 0.72);
  margin: 0 0 var(--space-4);
  line-height: 1.45;
}
.cfg-sum__detail:empty { display: none; margin: 0; }
.cfg-sum__unit {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(238, 241, 243, 0.14);
}
.cfg-sum__unit-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cfg-sum__unit-label { font-size: var(--fs-small); color: rgba(238, 242, 245, 0.72); }

.cfg-sum__lines {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: var(--space-4) 0;
  margin: 0;
}
.cfg-sum__lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  font-size: var(--fs-small);
  color: rgba(238, 242, 245, 0.72);
}
.cfg-sum__lines li span:last-child {
  text-align: right;
  color: #eef2f5;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cfg-sum__lines li strong { color: #fff; font-weight: 700; }
.cfg-sum__lines-info { font-size: 0.75rem !important; opacity: 0.78; }
.cfg-sum__pending { color: var(--accent-soft); font-style: normal; }

.cfg-sum__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(238, 241, 243, 0.14);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(238, 242, 245, 0.72);
}
.cfg-sum__total strong {
  font-size: clamp(1.6rem, 1.4vw + 1.1rem, 2.1rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  display: inline-block;
}
@keyframes cfgBump {
  0% { transform: translateY(4px); opacity: 0.35; }
  100% { transform: translateY(0); opacity: 1; }
}
.cfg-sum__total strong.is-bumped { animation: cfgBump 260ms ease; }

.cfg-sum__note {
  font-size: 0.75rem;
  color: rgba(238, 242, 245, 0.72);
  margin: var(--space-3) 0 var(--space-4);
  line-height: 1.5;
}
.cfg-sum__actions { display: flex; flex-direction: column; gap: var(--space-2); }
.cfg-sum__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.cfg-sum__row .btn { padding-inline: 0.9em; }
.cfg-sum .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.cfg-sum .btn-secondary {
  background: transparent;
  border-color: rgba(238, 241, 243, 0.32);
  color: #eef1f3;
}
@media (hover: hover) and (pointer: fine) {
  .cfg-sum .btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
  }
  .cfg-sum .btn-secondary:hover { background: rgba(238, 241, 243, 0.12); border-color: rgba(238, 241, 243, 0.55); color: #fff; }
  .cfg-sum__copy:hover { color: #fff; }
}
.cfg-sum__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  width: 100%;
  margin-top: var(--space-3);
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  color: rgba(238, 242, 245, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Вариант панели для позиций «под заказ» */
.cfg-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 1020px) { .cfg-request { grid-template-columns: 1fr; } }
.cfg-request__list { display: flex; flex-direction: column; gap: var(--space-3); }
.cfg-request__item {
  display: flex;
  gap: var(--space-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: var(--space-4) var(--space-5);
}
.cfg-request__item strong { font-family: var(--font-heading); font-size: 1.1rem; display: block; margin-bottom: 0.2rem; }
.cfg-request__item p { color: var(--ink-soft); font-size: var(--fs-small); margin: 0 0 var(--space-3); }
.cfg-sum--request .cfg-sum__lines { border-top: 1px solid rgba(238, 241, 243, 0.14); }

/* ---- Форма заявки в конфигураторе (под сеткой, вне sticky) ---- */
.cfg-order-band {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.cfg-request + .cfg-order-band {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.cfg-order {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .cfg-order { grid-template-columns: 1fr; gap: var(--space-5); }
}
.cfg-order__intro { min-width: 0; }
.cfg-order__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.cfg-order__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.45rem;
  color: var(--ink);
  text-wrap: balance;
}
.cfg-order__lead {
  margin: 0 0 var(--space-4);
  font-size: var(--fs-base);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 42ch;
}
.cfg-order__preview {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
}
.cfg-order__preview-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.cfg-order__preview-text {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  font-variant-numeric: tabular-nums;
}
.cfg-order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-4);
}
.cfg-order__full { grid-column: 1 / -1; }
.cfg-order__grid > .field:has(select[name="product"]),
.cfg-order__grid > .field:has(input[name="volume"]:not([type="hidden"])) {
  grid-column: 1 / -1;
}
@media (max-width: 560px) {
  .cfg-order__grid { grid-template-columns: 1fr; }
  .cfg-group { padding: var(--space-4); }
}
.order-form--cfg {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 0;
}
.order-form--cfg .consent--compact {
  gap: 0.45rem 0.7rem;
}
.order-form--cfg .consent--compact .consent__title {
  font-size: var(--fs-small);
  margin-bottom: 0.25rem;
}
.order-form--cfg .consent--compact .consent__body p {
  font-size: 0.75rem;
  margin-bottom: 0.2rem;
}
.order-form--cfg .order-form__note {
  text-align: left;
}
.order-form--cfg .form-status {
  margin-top: 0;
}
.order-form--cfg .field input[type="text"],
.order-form--cfg .field input[type="tel"],
.order-form--cfg .field select,
.order-form--cfg .field textarea,
.order-form--cfg .field-phone {
  background: var(--white);
}
.order-form--cfg .captcha-field input[name="captcha"] {
  max-width: 8rem;
}

/* ---- Уведомление о копировании ---- */
.cfg-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 12px);
  background: var(--steel);
  color: #eef2f5;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-s);
  box-shadow: none;
  border: 1px solid var(--steel-3);
  font-size: var(--fs-small);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.cfg-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 900px) { .cfg-toast { bottom: 84px; } }

/* ---------- Delivery pages: route from the plant ---------- */
.dlv-hero {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--paper);
}
.dlv-hero:has(.hero__stage),
.hero.dlv-hero:has(.hero__stage) {
  padding: 0;
  background: var(--paper);
}
.dlv-hero:has(.hero__desk),
.hero.dlv-hero:has(.hero__desk),
.hero.dlv-hero.hero--desk {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--paper);
}
.dlv-hero:has(.hero__yard),
.hero.dlv-hero:has(.hero__yard),
.hero.dlv-hero.hero--yard {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--paper);
}

/* Old copy|shot grid: stack, photo first, ticket overlapping like home mobile */
.dlv-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dlv-hero__shot {
  order: -1;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  height: auto;
  overflow: visible;
  position: relative;
  min-width: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: var(--space-4) 0;
}
.dlv-hero__shot img {
  width: auto;
  max-width: min(100%, 40rem);
  height: auto;
  max-height: 18rem;
  object-fit: contain;
  object-position: center;
  aspect-ratio: auto;
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: none;
  background: var(--white);
  padding: 6px;
  box-sizing: content-box;
  margin-inline: auto;
  display: block;
}
.dlv-hero__shot figcaption { display: none; }
.dlv-hero__copy.waybill,
.dlv-hero__grid > .waybill {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  margin-bottom: var(--space-4);
  max-width: 36rem;
}
.dlv-hero__place {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 var(--space-3);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--steel);
}
.dlv-hero__place .icon { color: var(--accent); }
.dlv-hero h1 {
  text-wrap: balance;
  max-width: 18ch;
  letter-spacing: -0.02em;
}
.dlv-hero .section-lead { max-width: 58ch; }
.dlv-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}
.dlv-hero__note {
  margin: 0 0 var(--space-4);
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 52ch;
}
.dlv-stamps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.dlv-stamps > div {
  grid-column: span 2;
  background: #fff;
  padding: 0.85rem 1rem 1.1rem;
  min-width: 0;
}
@media (min-width: 861px) {
  .dlv-stamps > div:nth-last-child(2):nth-child(4),
  .dlv-stamps > div:nth-last-child(1):nth-child(5) {
    grid-column: span 3;
  }
}
.dlv-stamps dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}
.dlv-stamps dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 0.86rem + 0.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--steel);
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.dlv-section-head { max-width: 58ch; margin-bottom: var(--space-5); }
.dlv-section-head h2 { margin: 0 0 var(--space-3); text-wrap: balance; }
.dlv-section-head p { margin: 0; color: var(--ink-soft); }
.dlv-section-head a { text-decoration: underline; text-underline-offset: 0.18em; }

.dlv-spine {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  position: relative;
}
.dlv-spine > * { min-width: 0; }

.dlv-origin {
  grid-column: 1 / -1;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-s);
  padding: var(--space-5);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  min-height: 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  box-shadow: none;
}
.dlv-origin__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.dlv-origin__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.dlv-origin__addr {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.dlv-origin__note {
  margin: 0;
  padding-top: 0;
  max-width: 44ch;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.dlv-stop {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
  color: inherit;
  box-shadow: none;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.dlv-stop__media { margin: 0; background: var(--white); padding: 5px; border-bottom: 1px solid var(--line); }
.dlv-stop__media img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  background: var(--sand);
}
.dlv-stop__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.dlv-stop h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.7rem);
  letter-spacing: -0.02em;
}
.dlv-stop__km {
  margin: 0.15rem 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-dark);
  font-variant-numeric: tabular-nums;
}
.dlv-stop__eta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.dlv-stop__go {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
}
@media (hover: hover) and (pointer: fine) {
  .dlv-stop:hover {
    border-color: var(--steel-3);
  }
  .dlv-stop:hover .dlv-stop__go { color: var(--accent-dark); }
}
.dlv-stop:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.dlv-tickets {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dlv-ticket {
  padding: 1rem 1.05rem 1.1rem;
  min-height: var(--tap);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-right: 1px solid var(--line);
}
.dlv-ticket:last-child { border-right: 0; }
.dlv-ticket__from {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.dlv-ticket strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dlv-fare {
  display: block;
}
.dlv-fare__list {
  display: grid;
  gap: 0.75rem;
  margin: var(--space-5) 0 0;
}
.dlv-fare__row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}
.dlv-fare__row:last-child { border-bottom: 1px solid var(--line); }
.dlv-fare__row dt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--steel);
}
.dlv-fare__row dt .icon { color: var(--accent); flex-shrink: 0; }
.dlv-fare__row dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.dlv-map {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dlv-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}
.dlv-map figcaption {
  margin: 0;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--sand);
}

@media (max-width: 1100px) {
  .dlv-spine { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .dlv-tickets { grid-template-columns: 1fr 1fr; }
  .dlv-ticket { border-right: 0; border-bottom: 1px solid var(--line); }
  .dlv-ticket:nth-child(odd) { border-right: 1px solid var(--line); }
  .dlv-ticket:last-child { border-bottom: 0; }
}
@media (max-width: 860px) {
  .dlv-fare { grid-template-columns: 1fr; }
  .dlv-hero__copy.waybill,
  .dlv-hero__grid > .waybill {
    max-width: none;
    padding: var(--space-4);
  }
  .dlv-spine { grid-template-columns: 1fr; }
  .dlv-origin { min-height: 0; flex-direction: column; align-items: flex-start; }
  .dlv-fare__row { grid-template-columns: 1fr; gap: 0.25rem; }
  .page-delivery-city .dlv-stamps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-delivery-city .dlv-stamps > div { grid-column: auto; }
  .page-delivery-city .dlv-stamps > div:last-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .dlv-tickets { grid-template-columns: 1fr; }
  .dlv-ticket { border-right: 0; }
  .dlv-stamps,
  .page-delivery-city .dlv-stamps { grid-template-columns: 1fr; }
  .dlv-stamps > div,
  .page-delivery-city .dlv-stamps > div { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .dlv-stop { transition: none; }
  .dlv-stop:hover { transform: none; }
}

/* ---------- About the plant ---------- */
.about-facts-band {
  padding: 0 0 var(--space-6);
}
.about-facts-band__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.about-facts-band__list > div {
  background: #fff;
  padding: 1.05rem 1.15rem 1.15rem;
}
.about-facts-band dt {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.about-facts-band dt .icon { color: var(--accent); }
.about-facts-band dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--steel);
}
.about-facts-band dd a { text-decoration: underline; text-underline-offset: 0.16em; }

.about-plant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16.5rem, 24rem);
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
}
.about-plant__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: var(--space-5);
}
.about-plant__copy h2 { margin-bottom: var(--space-3); }
.about-plant__copy .section-lead { margin-bottom: var(--space-4); }
.about-plant__copy p { max-width: none; }
.about-plant__copy .about-spec { margin-top: var(--space-4); }
.about-plant .stage-strip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 6px;
  background: var(--paper);
  border-left: 1px solid var(--line);
}
.about-plant .stage-strip figure {
  min-width: 0;
  background: var(--white);
}
.about-spec {
  margin: var(--space-4) 0 0;
  display: grid;
  gap: 0;
}
.about-spec__row {
  display: grid;
  grid-template-columns: 8.25rem minmax(0, 1fr);
  gap: 0.5rem 0.85rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}
.about-spec__row:last-child { border-bottom: 1px solid var(--line); }
.about-spec dt {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--steel);
}
.about-spec dt .icon { color: var(--accent); flex-shrink: 0; }
.about-spec dd { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.about-plant__media {
  display: grid;
  gap: var(--space-4);
}
.about-plant__media figure { margin: 0; }
.about-plant__media img {
  width: 100%;
  height: auto;
  object-fit: unset;
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: none;
}
.about-plant__media figcaption {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.about-lineup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.about-lineup__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  min-height: var(--tap);
  min-width: 0;
  color: inherit;
  background: #fff;
}
.about-lineup__name {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  min-width: 0;
}
.about-lineup__meta {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--accent-dark);
  text-align: right;
  flex: 0 1 auto;
}
@media (hover: hover) and (pointer: fine) {
  .about-lineup__item:hover { background: var(--accent-soft); }
}
.about-lineup__note {
  margin: var(--space-4) 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.about-lineup__note a { text-decoration: underline; text-underline-offset: 0.16em; }

.about-ship {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
}
.about-ship__copy {
  min-width: 0;
  padding: var(--space-5);
}
.about-ship__copy .section-lead { max-width: none; }
.about-ship__list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}
.about-ship__list h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}
.about-ship__list h3 .icon { color: var(--accent); }
.about-ship__list p { margin: 0; color: var(--ink-soft); max-width: none; }
.about-ship .btn { margin-right: 0.5rem; margin-bottom: 0.5rem; }
.about-ship .map-strip {
  margin: 0;
  border: 0;
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  height: 100%;
}
.about-ship .map-strip iframe {
  width: 100%;
  height: 100%;
  min-height: 16rem;
}

.about-spec.about-quality {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 0;
}
.about-quality .about-spec__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem 1.25rem;
  background: #fff;
  border: 0;
}
.about-quality article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: var(--space-5);
}
.about-quality h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}
.about-quality h3 .icon { color: var(--accent); }
.about-quality p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

@media (max-width: 960px) {
  .about-facts-band__list { grid-template-columns: 1fr 1fr; }
  .about-lineup { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .about-plant,
  .about-ship { grid-template-columns: 1fr; }
  .about-plant .stage-strip {
    display: flex;
    flex-direction: column;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .about-ship .map-strip {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 16rem;
  }
  .about-spec__row { grid-template-columns: 1fr; gap: 0.2rem; }
  .about-spec.about-quality { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .about-facts-band__list { grid-template-columns: 1fr; }
}

/* Mobile prints: never inherit the desktop height:0 / height:100% stretch.
   Safari keeps min-height:100% and height:100% alive across weaker overrides
   and then object-fit:fill squashes the photo into a strip. */
@media (max-width: 860px) {
  .hero--desk .waybill > .hero__print,
  .hero--desk .waybill > .hero__print--portrait,
  .about-sheet__copy > .about-sheet__print,
  .page-head__desk--print .page-head__copy > .page-head__print,
  figure.hero__print,
  figure.hero__print--portrait,
  figure.about-sheet__print,
  figure.page-head__print,
  figure.page-head__print--portrait,
  figure.page-head__strip,
  figure.sheet-desk__print,
  figure.sheet-desk__print--portrait {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
    flex: 0 0 auto !important;
    grid-row: auto !important;
    align-self: stretch !important;
  }
  .hero--desk .waybill > .hero__print img,
  .hero--desk .waybill > .hero__print--portrait img,
  .about-sheet__copy > .about-sheet__print img,
  .page-head__desk--print .page-head__copy > .page-head__print img,
  figure.hero__print img,
  figure.hero__print--portrait img,
  figure.about-sheet__print img,
  figure.page-head__print img,
  figure.page-head__print--portrait img,
  figure.page-head__strip img,
  figure.sheet-desk__print img,
  figure.sheet-desk__print--portrait img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
}
