/* ═══════════════════════════════════════════════════════════════
   LUMÉ — страница: info
   Помощь (/help, /help/:topic), о бренде (/about), 404.
   Всё под корнем .info; цвета — только токены (тёмная тема сама).
   ═══════════════════════════════════════════════════════════════ */

/* ── Общее ─────────────────────────────────────────────────────── */
.info { padding-bottom: 8px; }
.info .crumbs { margin-bottom: 18px; }
.info [id] { scroll-margin-top: 130px; }

.info .info-eyebrow {
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-dim);
}

/* Иконка в обёртке: .hi > svg (обводка currentColor) */
.info .hi {
  display: inline-grid; place-items: center; flex: none;
  width: 20px; height: 20px;
}
.info .hi svg {
  width: 100%; height: 100%;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.info img.is-broken { visibility: hidden; }

/* ═══ Помощь ════════════════════════════════════════════════════ */

/* ── Оглавление помощи ─────────────────────────────────────────── */
.info .help-hero {
  padding: 6px 0 28px;
  border-bottom: 1px solid var(--line);
}
.info .help-hero .lead { margin: 14px 0 0; }

.info .help-search { max-width: 640px; margin-top: 24px; }
.info .help-search__form { position: relative; }
.info .help-search__ico {
  position: absolute; left: 16px; top: 50%;
  width: 20px; height: 20px; transform: translateY(-50%);
  color: var(--text-dim); pointer-events: none;
}
.info .help-search__ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.info .help-search__input {
  width: 100%; height: 52px;
  padding: 0 16px 0 48px;
  font-size: 16px; color: var(--text);
  background: var(--bg);
  border: 1px solid var(--text);
  border-radius: var(--radius);
}
.info .help-search__input::placeholder { color: var(--text-dim); }
.info .help-search__input:focus { outline: 0; box-shadow: 0 0 0 1px var(--text); }

.info .help-results {
  margin-top: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.info .help-results__count, .info .help-results__empty {
  margin: 0; padding: 12px 16px;
  font-size: 13px; color: var(--text-dim);
}
.info .help-results__count { border-bottom: 1px solid var(--line-soft); }
.info .help-results__empty a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.info .help-results__list { list-style: none; }
.info .help-results__list a {
  display: block; padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.info .help-results__list li:last-child a { border-bottom: 0; }
.info .help-results__list a:hover, .info .help-results__list a:focus-visible { background: var(--bg-soft); text-decoration: none; }
.info .help-results__list a:focus-visible { outline-offset: -2px; }
.info .help-results__path { display: block; font-size: 14px; font-weight: 600; }
.info .help-results__snip { display: block; margin-top: 3px; font-size: 13px; line-height: 1.45; color: var(--text-dim); }
.info .help-results mark { background: var(--indigo-soft); color: var(--text); padding: 0 1px; }

/* Коротко о главном: сетка с линиями через gap */
.info .help-facts {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; margin-top: 28px;
  background: var(--line); border: 1px solid var(--line);
}
.info .help-facts li { background: var(--bg); }
.info .help-facts a {
  display: flex; align-items: flex-start; gap: 14px;
  height: 100%; padding: 18px 20px;
  transition: background .15s var(--ease);
}
.info .help-facts a:hover { background: var(--bg-soft); text-decoration: none; }
.info .help-facts__ico { width: 28px; height: 28px; }
.info .help-facts b { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
.info .help-facts b + span { display: block; margin-top: 3px; font-size: 13px; line-height: 1.4; color: var(--text-dim); }

/* Карточки разделов */
.info .help-cards {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.info .help-card {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  height: 100%; min-height: 180px;
  padding: 22px 22px 52px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color .15s var(--ease);
}
.info .help-card:hover { border-color: var(--text); text-decoration: none; }
.info .help-card__ico { width: 30px; height: 30px; margin-bottom: 6px; }
.info .help-card__title {
  font-family: var(--font);
  font-size: 18px; font-weight: 700; letter-spacing: -.01em; line-height: 1.1;
  text-transform: none;
}
.info .help-card__desc { font-size: 13.5px; line-height: 1.45; color: var(--text-dim); }
.info .help-card__arrow {
  position: absolute; left: 22px; bottom: 20px;
  width: 20px; height: 20px;
  transition: transform .25s var(--pop);
}
.info .help-card:hover .help-card__arrow { transform: translateX(4px); }

.info .help-cards--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.info .help-cards--compact .help-card {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center;
  gap: 2px 14px; min-height: 0; padding: 16px 18px;
}
.info .help-cards--compact .help-card__ico { grid-row: span 2; width: 26px; height: 26px; margin: 0; }
.info .help-cards--compact .help-card__title { font-size: 16px; }
.info .help-cards--compact .help-card__desc { grid-column: 2; }
.info .help-cards--compact .help-card__arrow { position: static; grid-column: 3; grid-row: 1 / span 2; }

.info .help-index-faq {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px 56px; align-items: start;
}
.info .help-contact {
  padding: 24px 24px 22px;
  background: var(--bg-soft);
}
.info .help-contact__title {
  font-family: var(--font);
  font-size: 24px; font-weight: 700; letter-spacing: -.01em; text-transform: none;
}
.info .help-contact__hours {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 0 16px; font-size: 13px; color: var(--text-dim);
}
.info .help-contact__hours .hi { width: 16px; height: 16px; }
.info .help-contact__list { list-style: none; margin-bottom: 18px; border-top: 1px solid var(--line); }
.info .help-contact__list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.info .help-contact__list a { font-weight: 600; white-space: nowrap; }
.info .help-contact__list small { display: block; margin-top: 1px; font-size: 12.5px; color: var(--text-dim); }

.info .help-docs {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 20px;
  margin-top: 36px; font-size: 13px;
}
.info .help-docs a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.info .help-docs a:hover { color: var(--text); }

/* Полоса «Остались вопросы?» */
.info .help-ask {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 32px;
  margin-top: 56px; padding: 24px 28px;
  background: var(--bg-soft);
}
.info .section > .help-ask { margin-top: 0; }
.info .help-ask__title {
  font-family: var(--font);
  font-size: 24px; font-weight: 700; letter-spacing: -.01em; text-transform: none;
  margin-bottom: 6px;
}
.info .help-ask p { margin: 0; font-size: 14px; color: var(--text-dim); }
.info .help-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.info .help-actions .hi { width: 18px; height: 18px; }

/* ── Раздел помощи: меню слева + статья ────────────────────────── */
.info .help-layout {
  display: grid; grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px; align-items: start;
  padding-top: 6px;
}
@media (min-height: 760px) {
  .info .help-side { position: sticky; top: 130px; }
}
.info .help-side__all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-dim);
}
.info .help-side__all:hover { color: var(--text); }
.info .help-side__all .hi { width: 16px; height: 16px; margin-left: -3px; }
.info .help-side__title {
  margin: 20px 0 6px;
  font-family: var(--font);
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-dim);
}
.info .help-side__nav ul { list-style: none; border-left: 1px solid var(--line); }
.info .help-side__nav li a {
  display: block; margin-left: -1px;
  padding: 6px 0 6px 14px;
  border-left: 2px solid transparent;
  font-size: 14px; line-height: 1.35;
}
.info .help-side__nav li a:hover { text-decoration: none; border-left-color: var(--text-dim); }
.info .help-side__nav li a[aria-current="page"] { border-left-color: var(--indigo); font-weight: 600; }
.info .help-side__card {
  margin-top: 28px; padding: 16px 18px;
  background: var(--bg-soft); font-size: 14px;
}
.info .help-side__card p { margin: 0 0 4px; }
.info .help-side__card a { text-decoration: underline; text-underline-offset: 3px; }
.info .help-side__card-title {
  font-family: var(--font);
  font-size: 14px; font-weight: 700; letter-spacing: -.01em; text-transform: none;
  margin-bottom: 8px !important;
}
.info .help-side__card .help-side__phone { font-size: 16px; font-weight: 700; text-decoration: none; white-space: nowrap; }

/* Мобильная лента разделов */
.info .help-chips { display: none; margin: 0 calc(-1 * var(--gutter)) 20px; }
.info .help-chips .chips { padding: 0 var(--gutter); }

.info .help-main { min-width: 0; max-width: 820px; }
.info .help-head { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.info .help-head .lead { margin: 14px 0 0; }
.info .help-head .lead a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }

.info .help-toc { padding: 16px 0 18px; border-bottom: 1px solid var(--line); }
.info .help-toc__title {
  margin: 0 0 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-dim);
}
.info .help-toc ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.info .help-toc a { font-size: 14px; color: var(--indigo); }

/* Секции статьи */
.info .help-sec { margin-top: 40px; }
.info .help-sec__head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-bottom: 14px; }
.info .help-sec__title {
  font-family: var(--font);
  font-size: 24px; font-weight: 700; letter-spacing: -.01em; line-height: 1.05;
  text-transform: none;
}
.info .help-sec p { margin: 0 0 12px; max-width: 72ch; font-size: 15px; line-height: 1.65; }
.info .help-sec .acc__body p:last-child { margin-bottom: 0; }
.info .help-sec b { font-weight: 600; }
.info .help-sec :is(p, li, dd) a:not([class]),
.help .acc__body a:not([class]) { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.info .help-sec :is(p, li, dd) a:not([class]):hover,
.help .acc__body a:not([class]):hover { color: var(--indigo-hover); }

.info .help-list { list-style: none; margin: 0 0 14px; max-width: 72ch; font-size: 15px; line-height: 1.65; }
.info .help-list li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.info .help-list li::before {
  content: ""; position: absolute; left: 2px; top: .68em;
  width: 5px; height: 5px; background: var(--text);
}

.info .help-steps { list-style: none; counter-reset: step; margin: 0 0 14px; max-width: 72ch; font-size: 15px; line-height: 1.65; }
.info .help-steps li { counter-increment: step; position: relative; min-height: 32px; padding: 3px 0 18px 50px; }
.info .help-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 12px;
  border: 1px solid var(--text); background: var(--bg);
}
.info .help-steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 16px; top: 36px; bottom: 4px;
  width: 1px; background: var(--line);
}
.info .help-steps--tight li { padding-bottom: 12px; }

.info .help-note {
  padding: 14px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--indigo);
  font-size: 14px !important;
}

/* Карточки вариантов: доставка, оплата, контакты */
.info .help-opts {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.info .help-opt {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
}
.info .help-opt__ico { width: 28px; height: 28px; margin-bottom: 6px; }
.info .help-opt__name {
  font-family: var(--font);
  font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.15;
  text-transform: none;
}
.info .help-sec .help-opt__price { margin: 2px 0 0; font-size: 18px; font-weight: 700; line-height: 1.3; }
.info .help-opt__price span { display: block; font-size: 13px; font-weight: 400; color: var(--text-dim); }
.info .help-opt__price span.is-good { color: var(--moss); }
.info .help-opt__price a { color: var(--text); white-space: nowrap; }
.info .help-sec .help-opt__term {
  display: flex; align-items: center; gap: 6px;
  margin: 0; font-size: 13px; color: var(--text-dim);
}
.info .help-opt__term .hi { width: 15px; height: 15px; }
.info .help-sec .help-opt__text { margin: 4px 0 0; font-size: 14px; line-height: 1.5; color: var(--text-dim); }

/* Список «способ — как вернём» */
.info .help-dl { margin: 0 0 14px; max-width: 72ch; border-top: 1px solid var(--line); }
.info .help-dl > div {
  display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 4px 24px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.info .help-dl dt { font-size: 14px; font-weight: 600; }
.info .help-dl dd { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-dim); }

/* Таблицы размеров */
.info .help-table { margin-bottom: 10px; border: 1px solid var(--line); }
.info .help-table .table thead th { background: var(--bg-soft); }
.info .help-table .table th[scope="row"] {
  font-size: 14px; font-weight: 700; color: var(--text);
  text-transform: none; letter-spacing: 0;
}
.info .help-table .table tbody tr:last-child > * { border-bottom: 0; }
/* Первая колонка не уезжает при горизонтальной прокрутке на телефоне */
.info .help-table .table th[scope="row"], .info .help-table .table thead th:first-child {
  position: sticky; left: 0; z-index: 1;
  background: var(--bg); box-shadow: 1px 0 0 var(--line-soft);
}
.info .help-table .table thead th:first-child { background: var(--bg-soft); }
.info .help-table .table tbody tr:hover th[scope="row"] { background: var(--bg-soft); }
.info .help-table .table tr.is-match th[scope="row"] { background: var(--indigo-soft); }
.info .help-table .table tr.is-match, .info .help-table .table tr.is-match:hover { background: var(--indigo-soft); }
.info .help-table .table tr.is-match th[scope="row"] { color: var(--indigo); }
.info .help-table--narrow { max-width: 360px; }

/* Подбор размера */
.info .help-finder { padding: 22px 24px; background: var(--bg-soft); }
.info .help-sec .help-finder__intro { margin: 0 0 14px; font-size: 14px; color: var(--text-dim); }
.info .help-finder__fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 14px; }
.info .help-finder .field { margin-bottom: 8px; }
.info .help-finder__out:empty { display: none; }
.info .help-finder__out { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.info .help-finder__result { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; }
.info .help-sec .help-finder__size { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; margin: 0; }
.info .help-finder__size span { font-size: 14px; color: var(--text-dim); }
.info .help-finder__size b {
  font-family: var(--font);
  font-size: 46px; font-weight: 700; line-height: 1;
}
.info .help-sec .help-finder__msg { margin: 12px 0 0; font-size: 14px; color: var(--text-dim); }
.info .help-finder__result + .help-finder__msg { margin-top: 14px; }

/* Как снять мерки */
.info .help-figure { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 32px; align-items: start; }
.info .help-figure__svg { width: 170px; height: auto; color: var(--text); }
.info .help-figure__svg .fig { fill: var(--bg-soft); stroke: currentColor; stroke-width: 1.4; stroke-linejoin: round; stroke-linecap: round; }
.info .help-figure__svg .tape { fill: none; stroke: var(--indigo); stroke-width: 1.6; stroke-dasharray: 4 3; }
.info .help-figure__svg .lead-line { fill: none; stroke: var(--indigo); stroke-width: 1; }
.info .help-figure__svg .num circle { fill: var(--indigo); }
.info .help-figure__svg .num text { fill: var(--indigo-ink); font: 700 10px var(--font); text-anchor: middle; }

/* Значки ухода */
.info .help-symbols {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px; max-width: 720px;
}
.info .help-symbols li { display: flex; align-items: center; gap: 14px; font-size: 14px; line-height: 1.4; }
.info .care-sym {
  width: 40px; height: 40px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linejoin: round; stroke-linecap: round;
}
.info .care-sym text { fill: currentColor; stroke: none; font: 700 8px var(--font); text-anchor: middle; }
.info .care-sym text.big { font-size: 12px; }
.info .care-sym .dot { fill: currentColor; stroke: none; }
.info .help-sec--fiber .label-tag { white-space: normal; }
.info .help-sec .help-fiber__more { margin-top: 4px; }

/* Соседние разделы */
.info .help-pager { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.info .help-pager a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 18px; border: 1px solid var(--line);
  transition: border-color .15s var(--ease);
}
.info .help-pager a:hover { border-color: var(--text); text-decoration: none; }
.info .help-pager span:not(.hi) {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-dim);
}
.info .help-pager .hi { width: 14px; height: 14px; }
.info .help-pager b {
  font-family: var(--font);
  font-size: 17px; font-weight: 700; letter-spacing: -.01em; text-transform: none;
}
.info .help-pager__next { grid-column: 2; align-items: flex-end; text-align: right; }

/* Авторы фотографий */
.info .credits {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px; margin-top: 18px;
}
.info .credit { padding: 16px 18px 10px; border: 1px solid var(--line); min-width: 0; }
.info .help-sec .credit__author { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.3; }
.info .help-sec p.credit__author a { color: var(--text); text-decoration: none; }
.info .help-sec p.credit__author a:hover { color: var(--text); text-decoration: underline; }
.info .help-sec .credit__meta { margin: 2px 0 10px; font-size: 12px; color: var(--text-dim); }
.info .credit__items { list-style: none; }
.info .credit__items li {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 7px 0; border-top: 1px solid var(--line-soft);
  font-size: 13px; line-height: 1.35;
}
.info .credit__prod { display: flex; align-items: center; gap: 10px; min-width: 0; }
.info .credit__thumb { width: 36px; height: 48px; flex: none; background: var(--bg-plate); overflow: hidden; }
.info .credit__thumb img { width: 100%; height: 100%; object-fit: cover; }
.info .credit__name {
  min-width: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.info .credit__src { flex: none; font-size: 12px; color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.info .credit__src:hover { color: var(--text); }

/* ═══ О бренде ═══════════════════════════════════════════════════ */
.info .about-hero {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  min-height: min(78vh, 760px);
  background: var(--bg-soft);
}
.info .about-hero__media { position: relative; min-height: 420px; background: var(--bg-plate); overflow: hidden; }
.info .about-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%;
}
.info .about-hero__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px clamp(24px, 5vw, 80px);
}
.info .about-hero__title { font-size: clamp(40px, 5.6vw, 92px); overflow-wrap: anywhere; line-height: .88; margin: 0 0 24px; }
.info .about-hero__lead { font-size: 18px; line-height: 1.55; max-width: 36ch; margin: 0 0 30px; }
.info .about-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.info .about-story {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 28px 72px; padding: 72px 0 8px;
}
.info .about-story__quote {
  font-family: var(--font);
  font-size: clamp(28px, 3.3vw, 44px); font-weight: 700; line-height: 1.05;
  letter-spacing: -.01em; text-transform: none;
}
.info .about-story__text p { font-size: 17px; line-height: 1.7; margin: 0 0 16px; max-width: 60ch; }
.info .about-story__text p:first-child::first-letter {
  float: left; margin: 6px 10px 0 0;
  font-family: var(--font); font-weight: 700; font-size: 58px; line-height: .8;
}

/* Материалы — тёмная полоса в цвет шапки */
.info .about-materials {
  margin-top: 64px; padding: 64px 0 56px;
  background: var(--ink); color: var(--ink-text);
}
/* Индиго-обводка фокуса на графите почти не видна — светлая */
.info .about-materials :focus-visible { outline-color: var(--ink-text); }
.info .about-materials__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 12px 40px; margin-bottom: 36px;
}
.info .about-materials__head p { margin: 0; max-width: 46ch; color: var(--ink-dim); font-size: 15px; }
.info .about-facts {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink-2);
}
.info .about-facts li { padding: 26px 28px 8px 0; }
.info .about-facts li + li { padding-left: 28px; border-left: 1px solid var(--ink-2); }
.info .about-facts h3 {
  font-family: var(--font);
  font-size: 20px; font-weight: 700; letter-spacing: -.01em; text-transform: none;
  margin-bottom: 12px;
}
.info .about-facts p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ink-dim); }
.info .about-fibers { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--ink-2); }
.info .about-fibers__title {
  font-family: var(--font);
  font-size: 14px; font-weight: 700; letter-spacing: -.01em; text-transform: none;
  margin-bottom: 14px;
}
.info .about-fibers ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.info .about-fibers a:hover { text-decoration: none; }
.info .about-fibers .label-tag { font-size: 12px; padding: 7px 11px 7px 12px; transition: transform .2s var(--pop); }
.info .about-fibers a:hover .label-tag { transform: translateY(-2px); }

/* Ткани крупным планом: шерсть и кашемир, ткани платьев */
.info .about-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 72px; }
.info .about-tile__media { aspect-ratio: 1 / 1; }
.info .about-tile__media img { object-position: 50% 40%; }
.info .about-tile__media--knit img { object-position: 30% 50%; }
.info .about-tile__body { padding-top: 18px; }
.info .about-tile__title {
  font-family: var(--font);
  font-size: clamp(26px, 2.6vw, 34px); font-weight: 700; letter-spacing: -.01em; text-transform: none;
  margin-bottom: 10px;
}
.info .about-tile__body p { margin: 0 0 14px; max-width: 52ch; color: var(--text-dim); line-height: 1.6; }

/* Тёплый комплект: шапка, шарф, носки */
.info .about-kit {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 32px 56px; align-items: center; margin-top: 88px;
}
.info .about-kit__title {
  font-family: var(--font);
  font-size: clamp(34px, 4vw, 56px); font-weight: 700; line-height: .95; letter-spacing: -.01em;
  text-transform: none; margin-bottom: 18px;
}
.info .about-kit__desc { font-size: 16px; line-height: 1.65; margin: 0 0 22px; max-width: 46ch; }
.info .about-kit__links { list-style: none; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.info .about-kit__grid { gap: 32px 16px; }

/* Принципы */
.info .about-principles-wrap { margin-top: 88px; }
.info .about-principles {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px; margin-top: 24px;
}
.info .about-principles li { padding-top: 20px; border-top: 2px solid var(--text); }
.info .about-principles__num { font-family: var(--font); font-size: 12px; letter-spacing: .04em; color: var(--text-dim); }
.info .about-principles h3 {
  font-family: var(--font);
  font-size: 22px; font-weight: 700; letter-spacing: -.01em; text-transform: none;
  margin: 10px 0 10px;
}
.info .about-principles p { margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: var(--text-dim); }

/* Каталог */
.info .about-cats { margin-top: 88px; }
.info .about-cats__grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 16px;
}
.info .about-cat { display: block; }
.info .about-cat:hover { text-decoration: none; }
.info .about-cat__img { aspect-ratio: 3 / 4; }
.info .about-cat:hover .about-cat__img img { transform: scale(1.04); }
.info .about-cat__label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 12px 2px 0;
  font-family: var(--font);
  font-size: 16px; font-weight: 700; letter-spacing: -.01em; text-transform: none;
}
.info .about-cat__label small {
  font-family: var(--font);
  font-size: 13px; font-weight: 400; letter-spacing: 0; color: var(--text-dim);
}
.info .about-cat:hover .about-cat__label { text-decoration: underline; text-underline-offset: 4px; }
.info .about-cta { display: flex; justify-content: center; margin: 40px 0 0; }
.info .about-cats .muted a { color: var(--indigo); text-decoration: underline; }

/* ═══ 404 ════════════════════════════════════════════════════════ */
.info .nf-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 24px 72px; align-items: center;
  padding-top: 56px; padding-bottom: 24px;
}
.info .nf-code {
  margin: 0; justify-self: center;
  font-family: var(--font);
  font-weight: 700; font-size: clamp(120px, 21vw, 300px);
  line-height: .78; letter-spacing: -.01em;
  color: var(--text);
  padding-bottom: .08em;
  border-bottom: 6px solid var(--indigo);
}
.info .nf-body .lead { margin: 16px 0 26px; }
.info .nf-path {
  display: inline-block; max-width: 100%;
  padding: 1px 6px; background: var(--bg-soft); color: var(--text);
  word-break: break-all; vertical-align: 1px;
}
.info .nf-search { display: flex; gap: 8px; max-width: 540px; }
.info .nf-search__input { flex: 1; min-width: 0; }
.info .nf-search .btn svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.info .nf-hint { min-height: 20px; margin: 6px 0 0; font-size: 13px; color: var(--madder); }
.info .nf-sub {
  margin: 18px 0 12px;
  font-family: var(--font);
  font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.info .nf-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; }

/* ═══ Адаптив ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .info .help-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info .help-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info .help-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 40px; }
  .info .about-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info .about-facts li:nth-child(3) { padding-left: 0; border-left: 0; }
  .info .about-facts li:nth-child(n+3) { border-top: 1px solid var(--ink-2); }
  .info .about-cats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .info [id] { scroll-margin-top: 72px; }
  .info .help-index-faq { grid-template-columns: minmax(0, 1fr); }
  .info .help-chips { display: block; }
  .info .help-side { display: none; }
  .info .help-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .info .help-opts { grid-template-columns: minmax(0, 1fr); }

  .info .about-hero { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .info .about-hero__media { min-height: 0; height: min(56vh, 520px); }
  .info .about-hero__media img { object-position: 50% 22%; }
  .info .about-hero__text { padding: 32px 24px 36px; }
  .info .about-story { grid-template-columns: minmax(0, 1fr); padding-top: 48px; }
  .info .about-kit { grid-template-columns: minmax(0, 1fr); }
  .info .about-kit__desc { max-width: 60ch; }

  .info .nf-hero { grid-template-columns: minmax(0, 1fr); padding-top: 28px; }
  .info .nf-code { justify-self: start; font-size: clamp(96px, 28vw, 180px); border-bottom-width: 4px; }
}

@media (max-width: 760px) {
  .info .help-sec { margin-top: 32px; }
  .info .help-sec__title { font-size: 22px; }
  .info .help-finder { padding: 18px 16px; }
  .info .help-finder__fields { grid-template-columns: minmax(0, 1fr); }
  .info .help-figure { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .info .help-figure__svg { width: 130px; justify-self: center; }
  .info .help-symbols { grid-template-columns: minmax(0, 1fr); }
  .info .help-dl > div { grid-template-columns: minmax(0, 1fr); }
  .info .help-ask { padding: 20px; margin-top: 40px; }
  .info .help-cards--compact { grid-template-columns: minmax(0, 1fr); }

  .info .about-materials { margin-top: 48px; padding: 44px 0 40px; }
  .info .about-facts { grid-template-columns: minmax(0, 1fr); }
  .info .about-facts li, .info .about-facts li + li { padding: 20px 0 16px; border-left: 0; }
  .info .about-facts li + li { border-top: 1px solid var(--ink-2); }
  .info .about-tiles { grid-template-columns: minmax(0, 1fr); gap: 36px; margin-top: 48px; }
  .info .about-kit { margin-top: 56px; }
  .info .about-principles-wrap, .info .about-cats { margin-top: 56px; }
  .info .about-principles { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .info .about-cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 10px; }
  .info .about-story__text p { font-size: 16px; }

  .info .about-kit__links { flex-direction: row; flex-wrap: wrap; gap: 10px 22px; }
  /* Три карточки — лентой, как полка: без «сироты» во втором ряду */
  .info .about-kit__grid {
    grid-template-columns: none; grid-auto-flow: column;
    grid-auto-columns: calc((100% - 10px - var(--gutter)) / 2.2);
    gap: 10px; overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding: 0 var(--gutter);
    margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter) 4px;
    scrollbar-width: none;
  }
  .info .about-kit__grid::-webkit-scrollbar { display: none; }
  .info .about-kit__grid > .pcard { scroll-snap-align: start; }

  /* Остаётся только лупа; «Найти» прячем визуально, но не для скринридера */
  .info .nf-search .btn { position: relative; padding: 0 16px; }
  .info .nf-search .btn span {
    position: absolute; width: 1px; height: 1px;
    margin: -1px; padding: 0; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
}

@media (max-width: 600px) {
  .info .help-cards { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .info .help-card {
    display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center;
    gap: 2px 14px; min-height: 0; padding: 16px 16px;
  }
  .info .help-card__ico { grid-row: span 2; width: 26px; height: 26px; margin: 0; }
  .info .help-card__title { font-size: 16px; }
  .info .help-card__desc { grid-column: 2; }
  .info .help-card__arrow { position: static; grid-column: 3; grid-row: 1 / span 2; }
  .info .help-pager { grid-template-columns: minmax(0, 1fr); }
  .info .help-pager__next { grid-column: 1; }
}

@media (max-width: 480px) {
  .info .help-facts { grid-template-columns: minmax(0, 1fr); }
  .info .help-facts a { padding: 14px 16px; }
  .info .about-hero { margin: 0 calc(-1 * var(--gutter)); }
  .info .about-hero__text { padding: 28px var(--gutter) 32px; }
  .info .about-hero__actions .btn { flex: 1 1 auto; }
  .info .nf-links .btn { flex: 1 1 auto; }
}

/* Editorial 404, with working search and catalogue shortcuts. */
.info.nf .nf-hero { grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); align-items: center; gap: clamp(32px, 5vw, 80px); padding-top: 44px; padding-bottom: 40px; }
.nf-visual { position: relative; overflow: hidden; aspect-ratio: 4 / 5; max-height: 620px; background: var(--bg-soft); border-radius: 3px; }
.nf-visual img { width: 100%; height: 100%; object-fit: cover; }
.nf-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(0 0 0 / .35), transparent 65%); }
.info.nf .nf-code { position: absolute; inset: auto 28px 14px; z-index: 1; font: 700 clamp(100px, 13vw, 190px)/1 var(--font); letter-spacing: -.04em; color: white; margin: 0; padding: 0; border: 0; }
.nf-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); margin-bottom: 22px; }
.info.nf .nf-body .page-title { font: 700 clamp(32px, 3.6vw, 48px)/1.1 var(--font); letter-spacing: -.035em; }
.info.nf .nf-body .lead { max-width: 46ch; font-size: 14px; line-height: 1.8; margin: 22px 0; color: var(--text-dim); }
.info.nf .nf-search { gap: 0; border: 1px solid var(--line); border-radius: 28px; padding: 4px; }
.info.nf .nf-search__input { border: 0; background: transparent; min-height: 40px; padding-left: 16px; font-size: 13px; }
.info.nf .nf-search .btn { min-height: 40px; padding: 0 18px; font-size: 12px; }
.info.nf .nf-links { margin-top: 24px; }
.info.nf .nf-links .btn { min-height: 44px; padding: 0 22px; font-size: 12px; }
.info.nf .chips { gap: 6px; }
.info.nf .chip { border-radius: 999px; font-size: 11px; }
@media (max-width: 760px) {
  .info.nf .nf-hero { grid-template-columns: minmax(0, 1fr); padding-top: 22px; gap: 28px; }
  .nf-visual { height: 220px; aspect-ratio: auto; }
  .nf-visual img { object-position: center 35%; }
  .info.nf .nf-code { font-size: 112px; inset: auto 18px 8px; }
  .nf-eyebrow { font-size: 9px; line-height: 1.6; }
}
