/* ============================================================
   «Книга вашей пары» — стили сайта
   Палитра:
     --bg      #FDFBF7  тёплая бумага (фон)
     --section #1E3327  глубокий хвойный (тёмные секции)
     --text    #262A24  графитовый (основной текст)
     --cta     #B5674A  терракота (кнопки, акценты)
     --support #2F4D3A  хвойно-зелёный (маркеры, детали)
     --gold    #B5674A  терракота (кавычки, буквица) — тот же акцент, что и CTA
   Шрифты: Playfair Display (заголовки) + Manrope (текст) — из Google Fonts,
   с preconnect и display=swap, чтобы не блокировать отрисовку.
   Мобайл-фёрст.
   ============================================================ */

:root {
  --bg: #FDFBF7;
  --bg-tint: #F5EFE1;          /* лёгкий тёплый оттенок для чередования секций */
  --section: #1E3327;
  --section-2: #182A20;
  --text: #262A24;
  --text-soft: #6B6F62;
  --cta: #B5674A;
  --cta-hover: #9C5539;
  --cta-ink: #FFFFFF;
  --support: #2F4D3A;
  --gold: #B5674A;
  --line: #E6DFCE;
  --card: #FFFFFF;
  --on-dark: #F1EFE4;
  --on-dark-soft: #CBD3C5;

  --maxw: 1180px;
  --readw: 42rem;             /* ширина колонки текста ~66 символов */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(38, 42, 36, .05), 0 20px 44px -28px rgba(38, 42, 36, .28);

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;

  color-scheme: light;
}

/* ---------- база ---------- */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: clamp(1rem, 0.97rem + 0.16vw, 1.05rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--section);
  line-height: 1.16;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.45rem + 2.7vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.22rem); font-weight: 600; }

p { margin: 0 0 1rem; }
a { color: var(--cta-hover); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--cta); }
strong { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 2.5px solid var(--support);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--section); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- раскладка ---------- */
.wrap { max-width: min(var(--maxw), 100%); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 2rem); }
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section[id] { scroll-margin-top: 82px; }

/* текст + иллюстрация в две колонки на широком экране */
.split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
.split > * { min-width: 0; }
.split-media { margin: 0; }
.split-media img { width: 100%; height: auto; border-radius: 28px 8px 28px 8px; }
.split-media .cap { margin-top: .9rem; font-size: .84rem; color: var(--on-dark-soft); }
@media (min-width: 940px) { .split { grid-template-columns: 1.15fr .85fr; gap: 3rem; } }
/* .split--portrait — фото первым, уже: как в референсе (кто делает) */
@media (min-width: 940px) { .split--portrait { grid-template-columns: .62fr 1fr; } }

/* ---------- герой: текст + декоративная фигура ---------- */
.hero-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 3.2rem; } }

/* защита от переполнения в сетках */
.cards > *, .steps > *, .sys > *, .footer__grid > * { min-width: 0; }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--section); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark a { color: #fff; text-decoration-color: var(--gold); }
.narrow { max-width: var(--readw); }
.center { text-align: center; margin-inline: auto; }
.eyebrow {
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--cta);
  margin: 0 0 .9rem;
}
.section--dark .eyebrow { color: #D9C9A8; }
.lead { font-size: 1.1rem; color: var(--text-soft); }
.section--dark .lead { color: var(--on-dark-soft); }
hr.rule { border: 0; height: 1px; background: var(--gold); opacity: .5; margin: 2.5rem 0; }

/* пул-цитата — вытянутая мысль внутри текстового блока */
.pull {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem); line-height: 1.5;
  margin: 1.5rem 0; color: inherit;
}

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: .9rem 1.6rem;
  min-height: 52px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease, color .3s ease, border-color .3s ease;
}
.btn--primary { background: var(--cta); color: var(--cta-ink); box-shadow: 0 10px 26px -12px rgba(181, 103, 74, .55); }
.btn--primary:hover { background: var(--cta-hover); color: #fff; transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--section); border-color: var(--section); }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: var(--section); color: #fff; }
.section--dark .btn--ghost:hover { background: #fff; color: var(--section); }
.btn--lg { font-size: 1.04rem; padding: 1.05rem 2rem; min-height: 58px; }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.cta-note { font-size: .92rem; color: var(--text-soft); margin: .8rem 0 0; }
.section--dark .cta-note { color: var(--on-dark-soft); }

/* ---------- шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 247, .9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 1rem; min-height: 66px; padding-block: .5rem; }
.brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.14rem;
  color: var(--section);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .55rem;
  white-space: nowrap;
}
.brand svg { flex: none; }
.nav { margin-left: auto; display: none; align-items: center; gap: 1.5rem; }
.nav a { color: var(--text-soft); text-decoration: none; font-size: .93rem; font-weight: 600; }
.nav a:hover, .nav a[aria-current="true"] { color: var(--support); }
.header .btn { padding: .6rem 1.1rem; min-height: 42px; font-size: .93rem; }
.header__cta { margin-left: 1rem; display: none; }

.burger {
  margin-left: auto;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--section); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: .5rem clamp(1rem, 5vw, 2rem) 1.2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: .85rem .25rem; color: var(--text); text-decoration: none;
  font-weight: 600; border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav .btn { margin-top: 1rem; }

@media (min-width: 900px) {
  .burger, .mobile-nav { display: none !important; }
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

/* ---------- герой ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  background-image:
    linear-gradient(100deg, rgba(253, 251, 247, .95) 0%, rgba(253, 251, 247, .8) 38%, rgba(253, 251, 247, .38) 78%, rgba(253, 251, 247, .18) 100%),
    url("/assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(253, 251, 247, .96) 0%, rgba(253, 251, 247, .78) 55%, rgba(253, 251, 247, .4) 100%),
      url("/assets/img/hero-bg.jpg");
    background-position: top center;
  }
}
.hero h1 { max-width: 17ch; }
.hero .lead { max-width: 42ch; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); }
.hero .cta-row { margin-top: 1.8rem; }
.trust {
  margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--text-soft); max-width: 40ch;
}

/* ---------- списки ---------- */
.check { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.check li { position: relative; padding-left: 2rem; }
.check li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--support);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.4 11.2 3.2 8l1.1-1.1 2.1 2.1L11.7 4l1.1 1.1z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.4 11.2 3.2 8l1.1-1.1 2.1 2.1L11.7 4l1.1 1.1z'/%3E%3C/svg%3E") center/contain no-repeat;
  background-color: var(--support);
}
.section--dark .check li::before { background-color: var(--gold); }

/* «Знакомо?» — смещённый список-строка вместо карточек, кликабельный */
.pain { list-style: none; padding: 0; margin: 1.8rem 0 0; max-width: 42rem; }
.pain li { display: contents; }
.pain button {
  width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer;
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 1rem 2.4rem 1rem 1.6rem; position: relative;
  transition: color .25s ease, padding-left .25s ease;
}
.pain li:first-child button { border-top: 1px solid var(--line); }
.pain li:nth-child(even) button { margin-left: clamp(0px, 3vw, 2rem); }
.pain button::before {
  content: "—"; position: absolute; left: 0; top: 1rem; color: var(--cta); font-family: var(--font-head); font-weight: 600;
}
.pain button:hover, .pain button:focus-visible { color: var(--cta); padding-left: 1.9rem; }
.pain button.is-picked { color: var(--cta); font-weight: 700; }
.pain button::after {
  content: "→"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  color: var(--cta); font-size: 1.1rem; opacity: 0; transition: opacity .18s ease, transform .18s ease;
}
.pain button:hover::after, .pain button:focus-visible::after { opacity: 1; transform: translate(2px,-50%); }
.pain-hint { margin: 1.1rem 0 0; font-size: .88rem; color: var(--text-soft); font-style: italic; }

.pain-ack {
  display: none; align-items: flex-start; gap: .7rem;
  background: var(--bg-tint); border: 1px solid var(--gold); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; margin: 0 0 1.3rem; font-size: .95rem; color: var(--text);
}
.pain-ack.show { display: flex; }
.pain-ack b { color: var(--section); }

/* карточки «что внутри» — асимметричная bento-сетка */
.cards { display: grid; gap: 1rem; margin-top: 1.8rem; grid-template-columns: 1fr; grid-auto-flow: dense; }
@media (min-width: 680px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.4rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .35rem; font-size: 1.08rem; }
.card p { margin: 0; color: var(--text-soft); font-size: .96rem; }
@media (min-width: 680px) {
  .card--feature { grid-column: span 2; background: var(--section); border-color: var(--section); }
  .card--feature h3, .card--feature p { color: #fff; }
  .card--feature p { color: var(--on-dark-soft); }
  .card--feature h3::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-right: .5rem; }
}

/* «что внутри» — книжное оглавление с точечными линиями (вместо карточек) */
.toc { margin-top: 2rem; max-width: 54rem; columns: 1; column-gap: 3rem; }
@media (min-width: 760px) { .toc { columns: 2; } }
.toc-item {
  break-inside: avoid; display: flex; flex-wrap: wrap; align-items: flex-start;
  row-gap: .3rem; column-gap: .7rem; padding: 1.05rem 0;
  border-bottom: 1px solid var(--line); line-height: 1.4;
}
.toc-item .mark { flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: .55em; }
.toc-item .label { flex: none; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--section); padding-top: .05em; }
.toc-item .dots { flex: 1 1 2rem; align-self: stretch; border-bottom: 1px dotted var(--text-soft); opacity: .4; margin-bottom: .5em; min-width: 1rem; }
.toc-item .desc { flex: none; font-size: .85rem; color: var(--text-soft); text-align: right; max-width: 13rem; }
@media (max-width: 600px) { .toc-item .desc { display: none; } }

/* «чем это НЕ является» */
.not-list { display: grid; gap: 1.3rem; margin-top: 1.8rem; }
@media (min-width: 760px) { .not-list { grid-template-columns: 1fr 1fr; } }
.not-list > div { padding-left: 1.3rem; border-left: 2px solid var(--support); }
.not-list b { display: block; font-family: var(--font-head); font-weight: 600; color: var(--section); margin-bottom: .3rem; font-size: 1.05rem; }

/* шаги */
.steps { counter-reset: step; display: grid; gap: 1.4rem; margin-top: 1.8rem; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold); line-height: 1;
  margin-bottom: .6rem;
}
.step h3 { font-size: 1.08rem; }
.step p { margin: 0; color: var(--text-soft); font-size: .96rem; }

/* отзыв */
.quote {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.5rem);
  line-height: 1.5;
  margin: 0;
}
.quote--dark { color: #fff; }
.quote-mark { color: var(--gold); font-size: 2.6em; line-height: 0; vertical-align: -0.35em; margin-right: .1em; font-style: normal; font-family: var(--font-head); }
.quote-author { margin-top: 1.2rem; font-family: var(--font); font-size: .96rem; font-weight: 700; color: var(--on-dark-soft); letter-spacing: .01em; }
.quote-author.on-light { color: var(--text-soft); }

/* цена */
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow); max-width: 40rem;
}
.price-tag { font-family: var(--font-head); font-size: clamp(2rem, 1.4rem + 2.6vw, 2.8rem); color: var(--section); font-weight: 600; }
.price-old { text-decoration: line-through; color: var(--text-soft); font-size: 1.1rem; margin-left: .6rem; font-family: var(--font); }
.price-card .check { margin-top: 1.2rem; }
.price-card .btn { margin-top: 1.6rem; }
.guarantee {
  margin-top: 1.2rem; padding: .9rem 1.1rem; background: var(--bg-tint);
  border-radius: var(--radius-sm); font-size: .95rem; color: var(--text-soft);
}
.guarantee--fine { font-size: .8rem; color: var(--text-soft); opacity: .85; background: transparent; padding: 0; margin-top: 1rem; }

/* отрывок из настоящего разбора */
.excerpt {
  position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow);
  max-width: var(--readw);
}
.excerpt::before {
  content: "«"; position: absolute; top: .3rem; left: 1.1rem;
  font-family: var(--font-head); font-size: 3.4rem; color: var(--gold); line-height: 1; opacity: .55;
}
.excerpt-context { font-size: .92rem; color: var(--text-soft); margin: 0 0 1rem; padding-left: 2rem; }
.excerpt-text {
  font-family: var(--font-head); font-style: italic; font-size: 1.05rem; line-height: 1.75; color: var(--text);
  white-space: pre-line; padding-left: 2rem; margin: 0;
}
.excerpt-plan-label { font-weight: 700; color: var(--section); margin: 1.3rem 0 .4rem; padding-left: 2rem; font-size: .95rem; font-family: var(--font); }
.excerpt-plan { white-space: pre-line; padding-left: 2rem; color: var(--text-soft); font-size: .95rem; line-height: 1.7; margin: 0; }

/* FAQ — нативные details */
.faq { margin-top: 1.6rem; max-width: var(--readw); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: .3rem 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 2.3rem 1.05rem 0; position: relative;
  font-weight: 600; color: var(--section); font-size: 1.06rem;
  font-family: var(--font-head);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--cta); font-family: var(--font); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 1rem; color: var(--text-soft); max-width: 60ch; }

/* нумерованные оговорки */
.terms { display: grid; gap: 1.4rem; margin-top: 1.8rem; max-width: var(--readw); }
.terms > div b { font-family: var(--font-head); color: var(--section); }
.terms > div p { margin: .3rem 0 0; color: var(--text-soft); }

/* хлебные крошки */
.crumbs { font-size: .88rem; color: var(--text-soft); padding-top: 1.4rem; }
.crumbs a { color: var(--text-soft); }
.crumbs a:hover { color: var(--cta); }

/* группы систем */
.sys { display: grid; gap: 1rem; margin-top: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .sys { grid-template-columns: 1fr 1fr; } }
.sys > div { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow); }
.sys b { font-family: var(--font-head); color: var(--section); display: block; margin-bottom: .25rem; }
.sys p { margin: 0; color: var(--text-soft); font-size: .96rem; }

/* ---------- нижняя мобильная CTA-панель ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--bg); border-top: 1px solid var(--line);
  padding: .6rem clamp(1rem, 5vw, 2rem);
  padding-bottom: calc(.6rem + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(30, 51, 39, .12);
  transform: translateY(110%); transition: transform .25s ease;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { width: 100%; }
@media (min-width: 900px) { .mobile-cta { display: none; } }
body.has-mobile-cta { padding-bottom: 76px; }
@media (min-width: 900px) { body.has-mobile-cta { padding-bottom: 0; } }

/* ---------- подвал ---------- */
.footer { background: var(--section-2); color: var(--on-dark-soft); padding-block: 3rem 2.5rem; }
.footer a { color: var(--on-dark); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.2fr .9fr .9fr 1fr; } }
.footer h4 { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; margin-bottom: .7rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer .disclaimer { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; line-height: 1.6; color: var(--on-dark-soft); }
.footer .copy { margin-top: 1rem; font-size: .82rem; }

.social-links { gap: .6rem; }
.social-links li { display: flex; align-items: center; gap: .55rem; }
.social-links svg { flex-shrink: 0; }
.social-links .vk-badge { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border: 1.5px solid currentColor; border-radius: 4px; font-size: .62rem; font-weight: 700; letter-spacing: .01em; }
.social-note { margin-top: .7rem; font-size: .76rem; line-height: 1.5; color: var(--on-dark-soft); }

/* ---------- анимация появления ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* мелочи */
.muted { color: var(--text-soft); font-size: .92rem; }
.mt-0 { margin-top: 0; }
.tag {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--support); padding: .25rem .6rem; border-radius: 999px;
}
