/*
Theme Name: Pipl Ru
Theme URI: https://pipl.info/
Author: Pipl Ru
Description: Тема сайта «Пипл Ru» — карты Visa и Mastercard, оплата зарубежных сервисов, eSIM, переводы.
Version: 1.0.9
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: ppl-theme
*/

/* ═══════════════════════════════════════════════════════════
   ТОКЕНЫ
   Палитра снята кодом с бандла офсайта pipl.io (style1787831822.css):
   у офсайта CSS-переменных нет, значения захардкожены, поэтому здесь
   стоят самые частые по числу вхождений.
   ═══════════════════════════════════════════════════════════ */
:root {
  --canvas: #FAFCFF;
  --surface: #FFFFFF;
  --surface-2: #F4F6FC;
  --ink: #484848;
  --ink-strong: #000B2D;
  --muted: #79818f;
  --line: #E4E6F2;

  --accent: #6F47EA;   /* фиолетовый — состояния, активное, акценты в заголовках */
  --accent-ink: #5B36D6;
  --accent-2: #34C5BF; /* бирюза — заливка кнопок (так на офсайте) */
  --accent-2-ink: #2AA9A4;
  --coral: #FF563F;    /* редко: пилюля с числом */

  --r: 8px;            /* доминирующий радиус офсайта, 29 вхождений */
  --r-lg: 16px;        /* крупные плиты, 24 вхождения */
  --shadow: 0 16px 40px rgba(23, 14, 121, .12); /* единственная тень офсайта */

  --container: 1200px; /* .w1 офсайта — ширина сохранена по требованию владельца */
  --head-h: 80px;

  --font: 'Nata Sans', 'Segoe UI', Tahoma, sans-serif;
  --font-display: 'Akt', 'Nata Sans', 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ═══════════════════════════════════════════════════════════
   БАЗА
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
}
body.nav-locked { overflow: hidden; }

img, svg, video, canvas { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em;     color: gray;}
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

.ca { color: var(--accent); }  /* слово-акцент в заголовке — приём офсайта */

.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (max-width: 991px) { .wrap { padding: 0 15px; } }

.narrow { max-width: 800px; }
.lede { font-size: 1.15rem; color: var(--ink); }
.note { color: var(--muted); font-size: .92rem; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: #fff; padding: 12px 18px; border-radius: var(--r);
}
.skip:focus { left: 12px; top: 12px; }

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

/* ═══════════════════════════════════════════════════════════
   ВСПЛЫТИЕ БЛОКОВ И ТЕКСТА
   Блок приходит снизу и проявляется, ступенька по месту в ряду.
   Блюра в формуле намеренно нет — всплытие с блюром в сетке занято.
   ═══════════════════════════════════════════════════════════ */
[data-rise] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
[data-rise].is-up { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-rise] { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   ХЕДЕР — геометрия офсайта: 80px, fixed, белый 80% + блюр,
   рамка снизу, без отступа от кромки окна, бургер с 1200px.
   ═══════════════════════════════════════════════════════════ */
.head {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.head__in {
  height: var(--head-h);
  display: flex; align-items: center; gap: 18px;
}
.head__spacer { height: var(--head-h); }

.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  color: var(--ink-strong); letter-spacing: -.02em;
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__list a { font-size: .95rem; font-weight: 600; color: var(--ink-strong); }
.nav__list a:hover { color: var(--accent); text-decoration: none; }
.nav__list a[aria-current="page"] { color: var(--accent); }
/* Разделы, которые не помещаются в строку шапки: только в бургер-меню (с 1200px) */
.nav__more { display: none; }

/* Реф-кнопка в шапке — вне бургера на всех ширинах (жёсткое правило) */
.head__cta { flex-shrink: 0; margin-left: 12px; }

.burger {
  display: none; width: 44px; height: 44px; padding: 0; margin-left: auto;
  background: none; border: 0; cursor: pointer; position: relative;
}
.burger span {
  position: absolute; left: 11px; width: 22px; height: 2px; background: var(--ink-strong);
  transition: all .35s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2), .burger span:nth-child(3) { top: 21px; }
.burger span:nth-child(4) { top: 27px; }
.burger.is-x span:nth-child(1), .burger.is-x span:nth-child(4) { opacity: 0; }
.burger.is-x span:nth-child(2) { transform: rotate(45deg); }
.burger.is-x span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 1200px) {
  .burger { display: block; }
  .nav {
    position: fixed; top: var(--head-h); right: 15px; left: 15px;
    margin: 0; max-height: calc(100vh - var(--head-h) - 20px); overflow-y: auto;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
    box-shadow: var(--shadow); padding: 10px 0;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav.is-shown { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { display: block; padding: 14px 20px; font-size: 1.05rem; }
  .nav__more { display: list-item; }
  .head__cta { margin-left: 0; }
  .head__in { gap: 10px; }
}
@media (max-width: 560px) {
  .brand__name { font-size: 1.1rem; }
  .head__cta .btn { padding: 10px 12px; font-size: .95rem; }
}
@media (max-width: 380px) {
  .brand__name { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   КНОПКИ — геометрия офсайта: радиус 8, 12/18, 18px/700,
   основная залита бирюзой, вторичная белая с настоящей рамкой,
   на ховере рамка становится фиолетовой.
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: 1.125rem; font-weight: 700; line-height: 1.2;
  padding: 12px 18px; border-radius: var(--r); border: 0; cursor: pointer;
  background: var(--accent-2); color: #fff;
  transition: background .3s ease;
  text-align: center;
}
.btn:hover { background: var(--accent-2-ink); color: #fff; text-decoration: none; }
.btn--lg { padding: 20px 26px; }
.btn--ghost {
  background: var(--surface); color: var(--accent); border: 1px solid var(--line);
  transition: border-color .3s ease, color .3s ease;
}
.btn--ghost:hover { background: var(--surface); border-color: var(--accent); color: var(--accent-ink); }
.btn--violet { background: var(--accent); }
.btn--violet:hover { background: var(--accent-ink); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 480px) { .btn--lg { padding: 18px 20px; } }

/* ═══════════════════════════════════════════════════════════
   ПЕРВЫЙ ЭКРАН
   Фон — каркасный точечный глобус на canvas в акцентных цветах.
   На курсор не реагирует; под холстом лежит мягкий градиент,
   поэтому без JS экран не пустой.
   ═══════════════════════════════════════════════════════════ */
.hero { position: relative; padding: 100px 0 82px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 72% 38%, rgba(111, 71, 234, .12), transparent 70%),
    radial-gradient(45% 45% at 20% 75%, rgba(52, 197, 191, .12), transparent 70%);
}
.hero__globe {
  position: absolute; top: 50%; right: -6%; transform: translateY(-50%);
  width: min(860px, 70vw); aspect-ratio: 1 / 1; z-index: 0; pointer-events: none;
}
.hero__in { position: relative; z-index: 1; max-width: 660px; }

/* Кадр-подложка первого экрана. Кадр кроется по площади блока, поэтому
   фокус задан явно: в раскрое остаётся нижняя облачная гряда и светлая
   дымка у горизонта, а не пустая синева сверху.
   Вуаль — отдельный слой поверх кадра: ни opacity на картинке, ни filter
   на контейнере, иначе вместе с фоном бледнеет и текст. */
.hero__photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 75%; }
.hero__veil {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:linear-gradient(100deg, rgba(255, 255, 255, .70) 0%, rgba(255, 255, 255, .7) 45%, rgba(255, 255, 255, .7) 75%, rgba(255, 255, 255, .7) 100%);
}
.hero h1 { margin-bottom: .5em; }
.hero__lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink); margin-bottom: 28px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

/* Пилюля с числом — приём офсайта (коралловая плашка в герое) */
.pill {
  display: inline-block; background: var(--coral); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  border-radius: 40px; padding: 4px 16px;
}

.hero__facts { display: flex; flex-wrap: wrap; gap: 12px 30px; padding: 0; margin: 0; list-style: none; }
.hero__facts li { margin: 0; font-size: .98rem; color: var(--muted); font-weight: 600; }
.hero__facts b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); font-weight: 800; }

@media (max-width: 900px) {
  .hero {padding: 60px 0 68px; }
  .hero__globe { right: -25%; width: 90vw; opacity: .55; }
  .hero__in { max-width: none; }
  /* Текст занимает всю ширину — вуаль ровная и плотнее, светлого края справа нет. */
  .hero__veil { background: rgba(255, 255, 255, .68); }
}

/* ═══════════════════════════════════════════════════════════
   СЕКЦИИ. Ритм держит воздух, а не линейки-разделители.
   ═══════════════════════════════════════════════════════════ */
.sec { padding: 56px 0 64px; }
.sec--tight { padding: 36px 0 44px; }
@media (max-width: 991px) { .sec { padding: 32px 0 40px; } }

.sec__head { max-width: 760px; margin-bottom: 32px; }
.sec__head p { color: var(--muted); margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   АСИММЕТРИЧНЫЕ ПЛИТЫ (референс 5)
   Несущий приём сайта: 12-колоночная сетка со спанами 7/5 и 5/7
   и ступенчатым ВЕРТИКАЛЬНЫМ смещением соседних плит.
   Смещение снимается на планшете — иначе ломается ритм чтения.
   ═══════════════════════════════════════════════════════════ */
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.grid--stagger > * { align-self: start; }
.c3 { grid-column: span 3; } .c4 { grid-column: span 4; }
.c5 { grid-column: span 5; } .c6 { grid-column: span 6; }
.c7 { grid-column: span 7; } .c8 { grid-column: span 8; }
.c12 { grid-column: span 12; }

.off-1 { margin-top: 48px; }
.off-2 { margin-top: 92px; }

@media (max-width: 900px) {
  .c3, .c4, .c5, .c6, .c7, .c8 { grid-column: span 12; }
  .off-1, .off-2 { margin-top: 0; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .off-1 { margin-top: 28px; }
  .off-2 { margin-top: 44px; }
}

/* Карточка-плита. Ховер красит рамку и не двигает блок — паттерн офсайта. */
.tile {
 background: #e8e7ff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; transition: border-color .3s ease;
}
.tile:hover { border-color: var(--accent); }
.tile--flat { border-radius: var(--r); padding: 20px; }
.tile--fill { background: var(--accent); color: #fff; border-color: var(--accent); }
.tile--fill h2, .tile--fill h3 { color: #fff; }
.tile--fill .tile__num { color: var(--accent-2); }
.tile--fill a { color: #fff; text-decoration: underline; }
.tile__ico {
  width: 44px; height: 44px; border-radius: var(--r); background: var(--surface-2);
  color: var(--accent); display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tile__ico svg { width: 24px; height: 24px; }
.tile p:last-child { margin-bottom: 0; }

/* Гигантская цифра акцентным цветом — приём офсайта */
.tile__num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1; color: var(--accent);
  letter-spacing: -.03em; margin-bottom: 8px;
}
.tile__cap { color: var(--muted); font-size: .95rem; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   КАДРЫ В БЛОКАХ
   Оформление снято с плиты: та же рамка, тот же радиус.
   Кадр показывается целиком — обрезки нет. Вертикальный кадр
   ограничивается по высоте и центрируется, а не кадрируется.
   ═══════════════════════════════════════════════════════════ */
.shot {
  margin: 0 0 20px;
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; background: var(--surface-2);
}
.shot:last-child { margin-bottom: 0; }
.shot img { width: 100%; height: auto; }
.shot--tall img { width: auto; max-height: 600px;
    margin: 0 auto; }
.tile--fill .shot { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .12); }

/* Нумерованные шаги кружком — приём офсайта */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.step { display: flex; gap: 16px; align-items: flex-start; margin: 0; }
.step__n {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 40px; background: var(--accent);
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: .25em; }
.step p { margin-bottom: 0; }

/* Крупная фиолетовая плашка-призыв — приём офсайта (.needhelp) */
.call {
  background: #7a00df; border-radius: var(--r-lg); color: #fff;
  padding: 46px 40px; position: relative; overflow: hidden;
}
.call h2 { color: #ffffff; text-align: left; }
.call p { color: rgba(255, 255, 255, .9); max-width: 620px; }
.call__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.call::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border-radius: 50%; border: 40px solid rgba(255, 255, 255, .07);
}
@media (max-width: 700px) { .call { padding: 30px 22px; } .call::after { display: none; } }

/* ═══════════════════════════════════════════════════════════
   ВИТРИНА НАПРАВЛЕНИЙ eSIM — блок офсайта, сохранён по требованию.
   Флекс с переносом, карточка = круглый флаг + страна + «от N ₽».
   ═══════════════════════════════════════════════════════════ */
.dest__tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.dest__tab {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 18px; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--ink); transition: border-color .3s ease, background .3s ease, color .3s ease;
}
.dest__tab:hover { border-color: var(--accent); }
.dest__tab.is-on { background: var(--accent); border-color: var(--accent); color: #fff; }
.dest__tab svg { width: 22px; height: 22px; }

.dest__list { display: flex; flex-wrap: wrap; gap: 12px; }
.dest__item {
  display: flex; align-items: center; gap: 12px; width: calc(33.333% - 8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 18px; color: var(--ink); font-weight: 600;
  transition: border-color .3s ease; min-width: 0;
}
.dest__item:hover { border-color: var(--accent); text-decoration: none; }
.dest__flag {
  width: 40px; height: 40px; border-radius: 40px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--accent);
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
}
.dest__body { min-width: 0; }
.dest__name { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dest__price { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); margin-top: 2px; }
@media (max-width: 960px) { .dest__item { width: calc(50% - 6px); } }
@media (max-width: 560px) { .dest__item { width: 100%; } }

/* ═══════════════════════════════════════════════════════════
   ТАБЛИЦЫ — горизонтальной прокрутки на мобильном нет,
   таблица разбирается в стопку через data-label.
   ═══════════════════════════════════════════════════════════ */
.tbl-wrap { overflow-x: auto; }
.tbl {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.tbl th, .tbl td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .98rem; }
.tbl th { font-family: var(--font-display); font-weight: 700; color: var(--ink-strong); background: var(--surface-2); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl td b { color: var(--ink-strong); }

@media (max-width: 760px) {
  .tbl, .tbl thead, .tbl tbody, .tbl tr, .tbl th, .tbl td { display: block; }
  .tbl thead { display: none; }
  .tbl tr { border-bottom: 1px solid var(--line); padding: 8px 0; }
  .tbl tr:last-child { border-bottom: 0; }
  .tbl td { border: 0; padding: 7px 16px; display: flex; gap: 14px; justify-content: space-between; text-align: right;}
  .tbl td::before {
    content: attr(data-label); font-weight: 700; color: var(--muted);
    flex-shrink: 0; max-width: 48%;
  }
}

/* ═══════════════════════════════════════════════════════════
   ОТЗЫВЫ И РЕЙТИНГ
   ═══════════════════════════════════════════════════════════ */
.star-rating { position: relative; display: inline-flex; line-height: 0; vertical-align: middle; }
.star-rating__bg, .star-rating__fg { display: flex; gap: 2px; }
.star-rating__bg { color: var(--muted); opacity: .35; }
.star-rating__fg { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; white-space: nowrap; color: #FFB020; }
.star-rating svg { width: var(--star-size, 20px); height: var(--star-size, 20px); flex-shrink: 0; fill: currentColor; stroke: currentColor; }

.score { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.score__val { font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1; color: var(--accent); }

.voice__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.voice__ava {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: var(--surface-2);
  color: var(--accent); display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
}
.voice__who { font-family: var(--font-display); font-weight: 700; color: var(--ink-strong); }
.voice__when { display: block; font-size: .85rem; color: var(--muted); font-weight: 600; }

.crit { display: grid; gap: 14px; }
.crit__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; }
.crit__name { font-weight: 600; }
.crit__bar { grid-column: 1 / -1; height: 6px; border-radius: 6px; background: var(--surface-2); overflow: hidden; }
.crit__fill { display: block; height: 100%; background: var(--accent); border-radius: 6px; }
.crit__val { font-family: var(--font-display); font-weight: 800; color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   АККОРДЕОН — раскрытие через grid-template-rows
   ═══════════════════════════════════════════════════════════ */
.ask { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; transition: border-color .3s ease; }
.ask:hover { border-color: var(--accent); }
.ask__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--ink-strong);
  padding: 18px 52px 18px 20px; position: relative;
}
.ask__q::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.ask.is-on .ask__q::after { transform: translateY(-30%) rotate(-135deg); }
.ask__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.ask.is-on .ask__body { grid-template-rows: 1fr; }
.ask__body > div { overflow: hidden; }
.ask__body p { padding: 0 20px 18px; margin: 0; }
.ask__body p + p { padding-top: 0; }

/* ═══════════════════════════════════════════════════════════
   ХЛЕБНЫЕ КРОШКИ
   ═══════════════════════════════════════════════════════════ */
.ppl-breadcrumb { padding: 18px 0 0; font-size: .9rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; }
.ppl-breadcrumb__sep { color: var(--line); }
.ppl-breadcrumb__current { color: var(--muted); }

.page-head { padding: 10px 0 30px; }
.page-head h1 { margin-bottom: .35em; }
.page-head .lede { color: var(--muted); max-width: 760px; }

/* ═══════════════════════════════════════════════════════════
   ПОДВАЛ (референс 5, без гигантской надписи бренда)
   ═══════════════════════════════════════════════════════════ */
.foot { border-top: 1px solid var(--line); background: var(--surface); margin-top: 20px; }
.foot__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px;
  padding: 48px 0 36px;
}
.foot__brand .brand { margin-bottom: 14px; }
.foot__about { color: var(--muted); font-size: .95rem; max-width: 320px; }
.foot__col h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--ink-strong); }
.foot__col ul { list-style: none; padding: 0; margin: 0; }
.foot__col li { margin-bottom: 9px; }
.foot__col a { color: var(--muted); font-size: .95rem; font-weight: 600; }
.foot__col a:hover { color: var(--accent); text-decoration: none; }
.foot__reach h3 { color: var(--ink-strong); }
.foot__reach p { color: var(--muted); font-size: .95rem; }
.foot__bottom {
  border-top: 1px solid var(--line); padding: 20px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  color: var(--muted); font-size: .87rem;
}
.foot__bottom p { margin: 0; max-width: 720px; }

@media (max-width: 900px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 26px; padding: 34px 0 26px; }
}
@media (max-width: 560px) {
  .foot__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   СЛУЖЕБНОЕ
   ═══════════════════════════════════════════════════════════ */
.err { padding: 80px 0 100px; text-align: center; }
.err__code { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 8rem); font-weight: 800; color: var(--accent); line-height: 1; }
.entry { padding: 20px 0 60px; }
.entry img { border-radius: var(--r); }

.tile--fill p {
	color: #fff;
}