/* MOOSLOVER — stay with you
   Палитра снята пиксельно с баннера бренда (_palette.js), а не подобрана на глаз:
   вся картинка лежит на hue 24-30deg при насыщенности 8-19%. Отсюда --stone, --taupe
   и --clay взяты буквально измеренными значениями (#D8D0C8, #B8B0A8, #806858).
   Чернила и приглушённый текст продолжают ту же ось вниз до контраста, годного для чтения.
   Насыщенность выше 20% в этом файле — ошибка: бренд десатурирован намеренно. */

@font-face {
  font-family: 'Archivo';
  src: url('../type/archivo-600.woff2') format('woff2');
  font-weight: 600; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Archivo';
  src: url('../type/archivo-700.woff2') format('woff2');
  font-weight: 700; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Karla';
  src: url('../type/karla-400.woff2') format('woff2');
  font-weight: 400; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Karla';
  src: url('../type/karla-500.woff2') format('woff2');
  font-weight: 500; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Karla';
  src: url('../type/karla-600.woff2') format('woff2');
  font-weight: 600; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('../type/iserif-400.woff2') format('woff2');
  font-weight: 400; font-display: swap; font-style: normal;
}

:root {
  --paper: #faf8f5;   /* фон страницы */
  --sand: #efeae3;    /* фон секции, на тон темнее бумаги */
  --stone: #d8d0c8;   /* измерено: самый частый цвет баннера, идёт в рамки */
  --taupe: #b8b0a8;   /* измерено: средняя тень складки */
  --clay: #806858;    /* измерено: самая тёмная заметная точка баннера */
  --ink: #2c2622;     /* та же ось, доведённая до читаемого контраста */
  --muted: #756b62;
  --line: #e3ddd5;
  --white: #fff;
  --shadow: 0 1px 2px rgba(44, 38, 34, .05), 0 8px 24px rgba(44, 38, 34, .06);
  --shadow-lift: 0 2px 6px rgba(44, 38, 34, .07), 0 18px 44px rgba(44, 38, 34, .11);
  --radius: 3px;
  --wrap: 1180px;
  --gap: 26px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16.5px/1.66 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -.021em;
  margin: 0;
  text-wrap: balance;
}

/* Экранная читалка: прячем clip-path, а не display:none, иначе диктор тоже промолчит */
.mute {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

.jump {
  position: absolute; left: -9999px; top: 0; z-index: 90;
  background: var(--ink); color: var(--paper);
  padding: 11px 18px; font-weight: 600;
}
.jump:focus { left: 8px; top: 8px; }

:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

.bolt { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- шапка: три яруса ----------
   Тёмная строка-слоган, светлый мастхед с центральным wordmark
   (бургер слева, поиск справа), лента разделов цвета clay.
   Панель поиска .hscout — absolute-оверлей под шапкой. */

.crown { position: relative; z-index: 40; }

.hem { background: var(--ink); }
.hem-in {
  display: flex; align-items: center; justify-content: space-between; gap: 10px 24px;
  min-height: 34px; font-size: 11.5px; font-weight: 600; letter-spacing: .08em;
}
.hem-slogan {
  text-transform: uppercase; letter-spacing: .17em; color: rgba(250, 248, 245, .55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hem-links { display: flex; gap: 2px; flex: none; }
.hem-links a {
  color: rgba(250, 248, 245, .85); text-decoration: none;
  padding: 4px 9px; border-radius: var(--radius);
}
.hem-links a:hover { color: var(--white); background: rgba(250, 248, 245, .12); }

.crownbar { background: var(--paper); }
.crownbar-in {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 14px; min-height: 74px;
}
.sigil {
  grid-column: 2; position: relative; padding-top: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 24px; letter-spacing: .18em; line-height: 1.1;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.sigil::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 58%; height: 4px;
  background-image: radial-gradient(circle, var(--clay) 1.4px, transparent 1.9px);
  background-size: 8px 4px; background-repeat: repeat-x;
}
.sigil span {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400; font-size: 12.5px; letter-spacing: .04em; color: var(--muted);
}

.knob {
  display: none; grid-column: 1; justify-self: start;
  background: none; border: 1px solid var(--stone);
  border-radius: var(--radius); width: 42px; height: 38px; cursor: pointer;
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
}
.knob i { display: block; width: 17px; height: 1.5px; background: var(--ink); }

.scout {
  grid-column: 3; justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--stone); border-radius: 99px;
  padding: 8px 15px; cursor: pointer; color: var(--ink);
  font: 600 13px/1 'Karla', sans-serif; letter-spacing: .04em;
}
.scout:hover { border-color: var(--clay); color: var(--clay); }
.scout-open .scout { border-color: var(--clay); background: var(--sand); color: var(--clay); }

.rackline { background: var(--clay); }
.rack { display: flex; flex-wrap: wrap; justify-content: center; }
.rack a {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--paper); text-decoration: none; padding: 11px 15px;
}
.rack a:hover { background: #6b5548; }
.rack a[aria-current="page"] { background: #59463b; box-shadow: inset 0 -3px 0 rgba(250, 248, 245, .85); }

/* панель поиска под шапкой (клиентский поиск по 45 карточкам, js/search-index.js) */
.hscout {
  display: none; background: var(--paper); border-top: 1px solid var(--line);
  position: absolute; left: 0; right: 0; top: 100%;
}
.scout-open .hscout { display: block; box-shadow: var(--shadow-lift); }
.hscout-in { padding-top: 14px; padding-bottom: 16px; }
.hscout-input {
  width: 100%; font: 400 16px/1.4 'Karla', sans-serif; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--clay); border-radius: var(--radius);
  padding: 11px 14px; outline: none;
}
.hscout-input::placeholder { color: var(--muted); }
.hscout-results { margin-top: 6px; }
.hscout-results a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 9px 12px; border-radius: var(--radius); color: var(--ink);
  font-size: 15px; text-decoration: none;
}
.hscout-results a:hover { background: var(--sand); color: var(--clay); }
.sc-p { font-family: 'Archivo', sans-serif; font-weight: 700; white-space: nowrap; }
.sc-none { padding: 9px 12px; color: var(--muted); font-size: 15px; }

/* ---------- кнопки ---------- */

.press {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
  padding: 13px 26px; border-radius: var(--radius); cursor: pointer;
  font: 600 15px/1 'Karla', sans-serif; letter-spacing: .015em;
  text-decoration: none; transition: background .16s, transform .16s, border-color .16s;
}
.press:hover { background: var(--clay); border-color: var(--clay); transform: translateY(-1px); }
.press-ghost { background: none; color: var(--ink); border-color: var(--stone); }
.press-ghost:hover { background: var(--sand); color: var(--ink); border-color: var(--taupe); }
.press-wide { width: 100%; }

/* ---------- первый экран главной: тёмная сцена + рейл ----------
   Градиент идёт по той же оси hue 24-30, что и вся палитра:
   от чернил через тёплый мид-тон к clay. Точки — мотив wordmark. */

.opener {
  background: linear-gradient(155deg, #221d19 0%, #4a3b31 55%, var(--clay) 100%);
  color: var(--paper);
  position: relative; overflow: hidden;
  padding: 58px 0 54px;
}
.opener::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(250, 248, 245, .13) 1.5px, transparent 2px);
  background-size: 26px 26px;
  mask-image: linear-gradient(115deg, transparent 42%, #000 80%);
  -webkit-mask-image: linear-gradient(115deg, transparent 42%, #000 80%);
}
.opener-core { position: relative; text-align: center; max-width: 900px; }
.opener-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--paper); border: 1px solid rgba(250, 248, 245, .35); border-radius: 99px;
  padding: 6px 17px; margin: 0 0 22px;
}
.opener h1 { font-size: clamp(36px, 5.2vw, 60px); color: var(--white); }
.opener h1 em {
  font-family: 'Instrument Serif', Georgia, serif; font-style: normal;
  font-weight: 400; letter-spacing: -.01em; color: #d8c4ae;
}
.opener-sub {
  font-size: 17.5px; color: rgba(250, 248, 245, .8);
  max-width: 66ch; margin: 18px auto 0; line-height: 1.62;
}
.opener-acts { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.press-opener { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.press-opener:hover { background: var(--stone); border-color: var(--stone); transform: translateY(-1px); }
.press-glass { background: none; color: var(--paper); border-color: rgba(250, 248, 245, .55); }
.press-glass:hover { background: rgba(250, 248, 245, .13); color: var(--white); border-color: var(--paper); }

.opener-reel-wrap { position: relative; margin-top: 44px; }
.reel-lead {
  font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(216, 196, 174, .9); text-align: center; margin: 0 0 14px;
}
.opener-reel { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.reel-card {
  background: var(--white); border-radius: var(--radius);
  padding: 12px 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--ink); text-decoration: none;
  box-shadow: 0 14px 34px rgba(24, 18, 14, .35);
  transition: transform .18s, box-shadow .18s;
}
.reel-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(24, 18, 14, .45); }
.reel-card img {
  width: 100%; aspect-ratio: 1/1.1; object-fit: cover;
  border-radius: 2px; background: var(--sand); height: auto;
}
.reel-t {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.reel-p { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14.5px; }
.reel-p em {
  font-family: 'Karla', sans-serif; font-style: normal; font-weight: 500;
  font-size: 12px; color: var(--muted); margin-left: 6px;
}

/* полоса USP-плюсов и цифры каталога сразу под hero */
.opener-after { padding: 34px 0 10px; }
.perk-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.perk {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 16px; font-size: 13.5px; font-weight: 600; line-height: 1.45;
}
.perk svg { color: var(--clay); flex: none; }

/* ---------- первый экран внутренних страниц ---------- */

.fold { padding: 62px 0 18px; }
.fold-eyebrow {
  font-family: 'Karla', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase; color: var(--clay); margin: 0 0 18px;
}
.fold h1 { font-size: clamp(38px, 6.4vw, 78px); }
.fold h1 em {
  font-family: 'Instrument Serif', Georgia, serif; font-style: normal;
  font-weight: 400; letter-spacing: -.01em; color: var(--clay);
}
.fold-sub {
  font-size: 18.5px; color: var(--muted); max-width: 62ch; margin: 22px 0 0; line-height: 1.62;
}
.fold-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.fold-figs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  margin-top: 12px; border-radius: var(--radius); overflow: hidden;
}
.fold-figs div { background: var(--paper); padding: 20px 18px; }
.fold-figs b {
  display: block; font-family: 'Archivo', sans-serif; font-size: 27px;
  font-weight: 700; letter-spacing: -.02em;
}
.fold-figs span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 3px; }

/* ---------- секции ---------- */

.tier { padding: 62px 0; }
.tier-sand { background: var(--sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tier-head { margin-bottom: 32px; max-width: 74ch; }
.tier-head h2 { font-size: clamp(26px, 3.3vw, 38px); }
.tier-head p { color: var(--muted); margin: 13px 0 0; font-size: 17px; }
.tier-eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .17em;
  text-transform: uppercase; color: var(--clay); margin: 0 0 12px;
}

/* ---------- сетка товаров ---------- */

.parade { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.parade-3 { grid-template-columns: repeat(3, 1fr); }

.piece {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.piece:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); border-color: var(--stone); }
.piece-shot { display: block; aspect-ratio: 1/1.13; background: var(--sand); overflow: hidden; }
.piece-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.piece:hover .piece-shot img { transform: scale(1.035); }
.piece-body { padding: 16px 17px 18px; display: flex; flex-direction: column; flex: 1; }
.piece-cat {
  font-size: 11.5px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 7px;
}
.piece h3 { font-size: 16.5px; line-height: 1.32; letter-spacing: -.012em; }
.piece h3 a { text-decoration: none; }
.piece h3 a:hover { color: var(--clay); }
.piece p { font-size: 14px; color: var(--muted); margin: 8px 0 0; line-height: 1.55; }
.piece-foot {
  margin-top: auto; padding-top: 14px; display: flex; align-items: baseline;
  justify-content: space-between; gap: 6px 10px; flex-wrap: wrap;
}
.piece-price {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; white-space: nowrap;
}
.piece-price em { font-family: 'Karla', sans-serif; font-weight: 500; font-size: 13px;
  font-style: normal; color: var(--taupe); margin-right: 4px; }
.piece-price s { font-weight: 400; font-size: 13.5px; color: var(--taupe); margin-left: 6px; }
.piece-buy { margin-top: 12px; font-size: 13px; padding: 10px 14px; }
.piece-swatch { display: flex; gap: 4px; margin-top: 11px; flex-wrap: wrap; }
.piece-swatch i {
  width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(44, 38, 34, .18);
}
.piece-swatch b { font-size: 12px; color: var(--taupe); font-weight: 500; align-self: center; }

/* звёзды: золотые намеренно, серые читались бы как часть интерфейса */
.pip-row { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.pip { width: 12px; height: 12px; display: inline-block; background: var(--stone); }
.pip.lit { background: #d8a441; }
.pip-row i { clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }

/* ---------- разделы каталога ---------- */

.aisles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.aisle {
  position: relative; display: block; text-decoration: none; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line); background: var(--white);
  transition: box-shadow .18s, transform .18s;
}
.aisle:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.aisle-shot { aspect-ratio: 1/1; background: var(--sand); }
/* фото портретные (модель в рост): центр-кроп даёт пах крупным планом, поэтому кропим верх */
.aisle-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.aisle-body { padding: 12px 14px 14px; }
.aisle-body h3 { font-size: 16px; line-height: 1.25; }
.aisle-body span {
  display: block; margin-top: 5px; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--clay);
}

/* ---------- страница товара ---------- */

.fitting { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; padding: 44px 0 12px; align-items: start; }
.fitting-shot {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--sand);
}
.fitting-shot img { width: 100%; aspect-ratio: 1/1.1; object-fit: cover; }
.fitting-minis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 11px; }
.fitting-minis img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--sand);
}
.fitting h1 { font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 14px; }
.fitting-trail { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.fitting-trail a { color: var(--muted); text-decoration: none; }
.fitting-trail a:hover { color: var(--clay); text-decoration: underline; }
.fitting-price {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 32px;
  margin: 18px 0 6px; letter-spacing: -.02em;
}
.fitting-price s { font-weight: 400; font-size: 18px; color: var(--taupe); margin-left: 9px; }
.fitting-intro { color: var(--muted); font-size: 16.5px; margin: 16px 0 0; }
.fitting-acts { margin: 26px 0 8px; }
.fitting-note { font-size: 13px; color: var(--taupe); margin: 12px 0 0; }

.traits { width: 100%; border-collapse: collapse; margin-top: 26px; font-size: 14.5px; }
.traits th, .traits td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.traits th { width: 40%; font-weight: 600; color: var(--muted); }

.cite {
  font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.36; color: var(--ink); border-left: 2px solid var(--clay);
  padding: 4px 0 4px 22px; margin: 40px 0;
}

.ledger { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.ledger article h3 { font-size: 18px; margin-bottom: 9px; }
.ledger article p { color: var(--muted); font-size: 15px; margin: 0; }

/* размерная таблица */
.measures { width: 100%; border-collapse: collapse; font-size: 14.5px; margin-top: 8px; }
.measures caption { text-align: left; color: var(--muted); font-size: 14px; padding-bottom: 10px; }
.measures th, .measures td { padding: 9px 12px; border: 1px solid var(--line); text-align: left; }
.measures thead th { background: var(--sand); font-weight: 600; font-size: 13.5px; white-space: nowrap; }
.measures tbody tr:nth-child(even) { background: rgba(239, 234, 227, .5); }
.measures-scroll { overflow-x: auto; }

/* ---------- гайды ---------- */

.primer { max-width: 74ch; padding: 44px 0 8px; }
.primer h1 { font-size: clamp(30px, 4vw, 48px); }
.primer-lead { font-size: 19px; color: var(--muted); margin: 20px 0 0; line-height: 1.6; }
.primer section { margin-top: 40px; }
.primer section h2 { font-size: clamp(21px, 2.4vw, 27px); margin-bottom: 12px; }
.primer section p { margin: 0; }
.primer-toc {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; margin-top: 34px;
}
.primer-toc h2 { font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.primer-toc ol { margin: 12px 0 0; padding-left: 20px; }
.primer-toc li { margin: 6px 0; font-size: 15px; }
.primer-toc a { color: var(--ink); }

/* ---------- подборщик размера ---------- */

.sizer {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; max-width: 74ch;
}
.sizer-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; }
.sizer label {
  display: flex; flex-direction: column; gap: 6px; flex: 0 1 132px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.sizer input {
  font: 400 17px/1 'Karla', sans-serif; color: var(--ink);
  padding: 12px 13px; border: 1px solid var(--stone); border-radius: var(--radius);
  background: var(--paper); width: 100%;
}
.sizer input:focus { outline: 2px solid var(--clay); outline-offset: 1px; border-color: var(--clay); }
.sizer-out {
  display: block; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
}
.sizer-out[hidden] { display: none; }
.sizer-out span { display: block; font-size: 14.5px; color: var(--muted); margin-top: 9px; }
.sizer-size {
  font-family: 'Archivo', sans-serif; font-size: 40px; font-weight: 700;
  letter-spacing: -.02em; line-height: 1; color: var(--clay);
}
.sizer-warn { color: var(--ink); font-size: 15px; }
.sizer-fine { font-size: 12.5px; color: var(--taupe); }

/* ---------- FAQ ---------- */

.qa { max-width: 82ch; }
.qa details {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.qa summary {
  cursor: pointer; list-style: none; padding: 17px 34px 17px 0; position: relative;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 17.5px; line-height: 1.36;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--clay); line-height: 1;
}
.qa details[open] summary::after { content: '\2212'; }
.qa details p { margin: 0 0 18px; color: var(--muted); max-width: 72ch; }

/* ---------- отзывы ---------- */

.vox { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.vox figure {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 24px 20px;
}
.vox blockquote { margin: 0; font-size: 15.5px; line-height: 1.62; }
.vox figcaption { margin-top: 14px; font-size: 13.5px; color: var(--taupe); font-weight: 600; }

/* ---------- плита-акцент ---------- */

.band {
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: 46px 48px; display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center;
}
.band h3 { font-size: clamp(24px, 2.9vw, 33px); color: var(--paper); }
.band p { color: rgba(250, 248, 245, .74); margin: 13px 0 0; }
.band .tier-eyebrow { color: var(--stone); }
.band .press { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.band .press:hover { background: var(--stone); border-color: var(--stone); }
.band-warm { background: var(--clay); }
.band-warm p { color: rgba(250, 248, 245, .8); }
.band-warm .tier-eyebrow { color: rgba(250, 248, 245, .72); }

/* ---------- ценностные строки ---------- */

.dials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px var(--gap); }
.dials article { padding-left: 18px; border-left: 2px solid var(--stone); }
.dials h3 { font-size: 18px; margin-bottom: 8px; }
.dials p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- проза сервисных страниц ---------- */

.leaf { max-width: 74ch; padding: 44px 0 10px; }
.leaf h1 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 20px; }
.leaf h2 { font-size: 22px; margin: 34px 0 10px; }
.leaf p { margin: 0 0 16px; }
.leaf ul { margin: 0 0 16px; padding-left: 20px; }
.leaf li { margin: 6px 0; }

/* ---------- подвал ---------- */

.footing { background: var(--ink); color: rgba(250, 248, 245, .72); margin-top: 68px; padding: 52px 0 30px; }
.footing a { color: rgba(250, 248, 245, .72); text-decoration: none; }
.footing a:hover { color: var(--paper); text-decoration: underline; }
.footing-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
.footing h4 {
  color: var(--paper); font-size: 12.5px; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 14px;
}
.footing ul { list-style: none; margin: 0; padding: 0; }
.footing li { margin: 8px 0; font-size: 14.5px; }
.footing-mark { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: .16em; color: var(--paper); }
.footing-mark span {
  display: block; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400;
  font-size: 13px; letter-spacing: .02em; color: rgba(250, 248, 245, .6); margin-top: 2px;
}
.footing-fine {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(250, 248, 245, .14);
  font-size: 13px; line-height: 1.62; display: flex; flex-wrap: wrap; gap: 14px 26px;
  justify-content: space-between;
}
.footing-fine p { margin: 0; max-width: 78ch; }

/* ---------- мелочи ---------- */

.outro { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.outro a {
  font-size: 14px; text-decoration: none; color: var(--muted);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 14px; background: var(--white);
}
.outro a:hover { color: var(--ink); border-color: var(--taupe); }

.trail { font-size: 13.5px; color: var(--muted); padding-top: 20px; }
.trail a { color: var(--muted); text-decoration: none; }
.trail a:hover { color: var(--clay); text-decoration: underline; }

/* ---------- узкие экраны ---------- */

@media (max-width: 1000px) {
  .parade, .parade-3 { grid-template-columns: repeat(3, 1fr); }
  .footing-grid { grid-template-columns: 1fr 1fr; }
  .fitting { grid-template-columns: 1fr; gap: 32px; }
  .band { grid-template-columns: 1fr; padding: 36px 30px; }
}

@media (max-width: 780px) {
  .knob { display: flex; }
  .rackline { display: none; }
  .rack-open .rackline { display: block; }
  .rack { flex-direction: column; align-items: stretch; padding: 4px 0 8px; }
  .rack a { padding: 12px 20px; border-bottom: 1px solid rgba(250, 248, 245, .14); }
  .rack a:last-child { border-bottom: 0; }
  .rack a[aria-current="page"] { box-shadow: inset 3px 0 0 rgba(250, 248, 245, .85); }
  .scout span { display: none; }
  .scout { width: 42px; height: 38px; padding: 0; justify-content: center; border-radius: var(--radius); }
  .opener-core { padding-top: 46px; }
  .opener-reel {
    display: flex; overflow-x: auto; gap: 12px;
    scroll-snap-type: x mandatory; padding-bottom: 10px;
    margin: 0 -24px; padding-left: 24px; padding-right: 24px;
  }
  .reel-card { flex: 0 0 168px; scroll-snap-align: start; }
  .parade, .parade-3, .ledger, .vox { grid-template-columns: repeat(2, 1fr); }
  .aisles {
    display: flex; overflow-x: auto; gap: 12px;
    scroll-snap-type: x mandatory; padding-bottom: 10px;
    margin: 0 -24px; padding-left: 24px; padding-right: 24px;
  }
  .aisle { flex: 0 0 158px; scroll-snap-align: start; }
  .fold-figs { grid-template-columns: repeat(2, 1fr); }
  .perk-strip { grid-template-columns: repeat(2, 1fr); }
  .dials { grid-template-columns: 1fr; }
  .fold { padding: 40px 0 12px; }
  .tier { padding: 46px 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hem-slogan { display: none; }
  .hem-in { justify-content: center; }
  .crownbar-in { min-height: 64px; }
  .sigil { font-size: 19px; letter-spacing: .14em; }
  .sigil span { font-size: 11px; }
  .opener-core { padding-top: 38px; }
  .opener h1 { font-size: clamp(30px, 9vw, 38px); }
  .opener-reel-wrap { margin-top: 32px; }
  .parade, .parade-3, .ledger, .vox { grid-template-columns: 1fr; }
  .perk-strip { grid-template-columns: 1fr; }
  .fitting-minis { grid-template-columns: repeat(4, 1fr); }
  .band { padding: 30px 22px; }
  .footing-grid { grid-template-columns: 1fr; }
}

@media print {
  .crown, .footing, .press, .outro { display: none; }
  body { background: #fff; }
}
