/* Академия Лу — shared styles */

:root {
  --bg: #fafaf7;
  --bg-2: #f2f2ed;
  --bg-3: #e8e8e0;
  --ink: #18201a;
  --ink-2: #2e382f;
  --ink-3: #6b7369;
  --ink-4: #9aa097;
  --line: #d9d9cf;
  --line-soft: #e6e6dc;

  --green: oklch(0.38 0.07 145);
  --green-deep: oklch(0.30 0.06 145);
  --green-bright: oklch(0.58 0.13 142);
  --green-soft: oklch(0.94 0.035 140);
  --green-mid: oklch(0.82 0.07 140);

  --max: 1440px;
  --pad: 56px;
  --radius: 14px;
  --radius-lg: 22px;

  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
  --font-text: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

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

@media (max-width: 900px) {
  :root { --pad: 24px; }
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
}
.h1 { font-size: clamp(44px, 7vw, 108px); }
.h2 { font-size: clamp(34px, 4.4vw, 68px); }
.h3 { font-size: clamp(24px, 2.4vw, 36px); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--green-bright);
}
.lede { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 58ch; }
.small { font-size: 13px; color: var(--ink-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-flex; width: 28px; height: 28px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
  transition: transform .18s ease, background .18s ease;
}
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn-primary {
  background: var(--green);
  color: #f4f6ef;
}
.btn-primary:hover { background: var(--green-deep); }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: #fff; border-color: var(--ink); }

.btn-ink {
  background: var(--ink); color: #f4f6ef;
}
.btn-ink:hover { background: #000; }

.btn-link {
  padding: 0; background: none; color: var(--ink);
  font-weight: 600; border-bottom: 1px solid var(--ink);
  border-radius: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.hdr {
  display: flex; align-items: center;
  gap: 28px;
  padding: 14px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #f4f6ef;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 2px;
  display: block;
}
.logo-text { line-height: 1; display: flex; flex-direction: column; }

.nav {
  display: flex; gap: 4px;
  margin-left: 24px;
}
.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
  position: relative;
}
.nav a:hover { background: var(--bg-2); color: var(--ink); }
.nav a.active { background: var(--ink); color: var(--bg); }

.hdr-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.hdr-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.menu-toggle { display: none; }
@media (max-width: 960px) {
  .nav, .hdr-phone { display: none; }
  .menu-toggle {
    display: inline-flex; margin-left: auto;
    width: 42px; height: 42px; border-radius: 999px;
    border: 1px solid var(--line);
    align-items: center; justify-content: center;
  }
  .hdr-cta { margin-left: 0; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d7dcd2;
  margin-top: 120px;
  padding: 80px 0 28px;
}
.site-footer .wrap { display: grid; gap: 56px; }
.ftr-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.ftr-brand .display {
  color: #f4f6ef;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
}
.ftr-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9aa097;
  margin: 0 0 16px;
  font-weight: 500;
}
.ftr-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ftr-col a:hover { color: #fff; }
.ftr-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: #7a8079;
}
@media (max-width: 900px) {
  .ftr-top { grid-template-columns: 1fr 1fr; }
}

/* ---------- Section helpers ---------- */
section { padding: 96px 0; }
section.tight { padding: 56px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    oklch(0.88 0.02 140) 0 8px,
    oklch(0.92 0.018 140) 8px 16px
  );
  color: var(--ink-3);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 180px;
}
.ph.ph-green {
  background: repeating-linear-gradient(
    135deg,
    oklch(0.55 0.08 145) 0 8px,
    oklch(0.50 0.07 145) 8px 16px
  );
  color: #e8eee0;
}
.ph.ph-dark {
  background: repeating-linear-gradient(
    135deg,
    oklch(0.22 0.03 150) 0 8px,
    oklch(0.18 0.025 150) 8px 16px
  );
  color: #c9cdc3;
}
.ph-tag {
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.ph.ph-green .ph-tag,
.ph.ph-dark .ph-tag { background: rgba(0,0,0,0.4); color: #fff; }

/* ---------- Card ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--ink-4); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,26,22,0.55);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 100;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg);
  border-radius: 22px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.modal h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.field {
  display: grid; gap: 6px;
  margin-top: 18px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
}

/* ---------- Breadcrumbs ---------- */
.crumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink-4); }

/* ---------- Fade in on scroll ---------- */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.in { opacity: 1; transform: none; }

/* ---------- Marquee (for stat strip) ---------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   Mobile overflow fixes — 2026-04-24
   ============================================================= */

html, body { overflow-x: hidden; }

/* Длинные слова не раздувают колонки */
.display, .hero-title, .hero-lede, .lede,
.cta-band h2, .work h4, .post h4, .quote-text,
.ftr-brand .display, h1, h2, h3, h4 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 900px) {
  /* svc-feature (тёмная плитка ландшафтного дизайна) — одна колонка */
  .svc-feature { grid-template-columns: 1fr; min-height: auto; }
  .svc-feature .media { aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  /* Header: на узких убираем большую кнопку "Заказать звонок",
     оставляем только логотип + бургер. CTA перенесётся в меню. */
  .hdr-cta > .btn-ink { display: none; }
  .hdr { gap: 12px; padding: 12px 0; }
  .logo { font-size: 15px; gap: 10px; }
  .logo-mark { width: 32px; height: 32px; font-size: 13px; border-radius: 8px; }
  .logo-sub { font-size: 9px; letter-spacing: 0.1em; }

  /* Display-заголовки — снижаем минимумы */
  .display.h1, h1.h1 { font-size: clamp(34px, 10vw, 56px) !important; }
  .display.h2, h2.h2 { font-size: clamp(26px, 7.5vw, 40px) !important; }
  .display.h3, h3.h3 { font-size: clamp(22px, 6vw, 32px) !important; }

  /* Все главные заголовки страниц — снижаем минимум */
  .hero-title, .ab-title, .ar-title, .bl-title, .ct-title, .page-title, .wd-title, .wk-title {
    font-size: clamp(34px, 10vw, 56px) !important;
    letter-spacing: -0.025em !important;
    line-height: 1 !important;
  }
  .cta-band { padding: 36px 22px !important; }
  .cta-band h2 { font-size: clamp(28px, 8vw, 48px) !important; }
  .quote { padding: 28px !important; }

  /* Footer — уменьшаем брендовый заголовок */
  .ftr-brand .display { font-size: 32px !important; line-height: 1.05; }
  .site-footer { padding: 48px 0 24px; margin-top: 72px; }
  .ftr-top { gap: 28px; }
  .ftr-bottom { flex-direction: column; gap: 8px; }

  /* Секции — чуть компактнее */
  section { padding: 56px 0; }
  section.tight { padding: 32px 0; }

  /* Модал */
  .modal { padding: 28px 22px; }
  .modal h3 { font-size: 24px; }

  /* Базовые кнопки */
  .btn { padding: 12px 18px; font-size: 14px; }
}

@media (max-width: 420px) {
  :root { --pad: 16px; }
  .display.h1, h1.h1 { font-size: clamp(26px, 8vw, 40px) !important; line-height: 1.02; }
  .hero-title, .ab-title, .ar-title, .bl-title, .ct-title, .page-title, .wd-title, .wk-title {
    font-size: clamp(28px, 9vw, 44px) !important;
  }
  .display.h2, h2.h2 { font-size: clamp(22px, 6.5vw, 34px) !important; }
  .cta-band { padding: 28px 18px !important; }
  .cta-band h2 { font-size: clamp(24px, 7vw, 40px) !important; }
  .modal { padding: 22px 18px; }
}

@media (max-width: 640px) {
  /* Контактные карточки: icon | text | action — на мобилке action на новую строку */
  .ch { grid-template-columns: 48px 1fr !important; gap: 12px !important; padding: 20px !important; }
  .ch > :nth-child(3) { grid-column: 1 / -1; margin-top: 4px; justify-self: start; }
}

@media (max-width: 640px) {
  /* "Как мы работаем" — карточки друг под другом */
  .process-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .step { min-height: auto !important; padding: 22px !important; }
  .step-n { font-size: 40px !important; }
}


/* =============================================================
   Mobile header: phone icon + drawer menu — 2026-04-24
   ============================================================= */
.hdr-phone-icon { display: none; }

@media (max-width: 640px) {
  .logo-sub { display: none !important; }
  .hdr-cta { margin-left: auto !important; gap: 8px !important; }
  .hdr-phone-icon {
    display: inline-flex;
    width: 40px; height: 40px;
    border-radius: 999px;
    align-items: center; justify-content: center;
    background: var(--green);
    color: #f4f6ef;
    transition: background .15s ease;
  }
  .hdr-phone-icon:hover { background: var(--green-deep); }
  .hdr-phone-icon svg { width: 18px; height: 18px; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  visibility: hidden; pointer-events: none;
}
.mobile-menu.open { visibility: visible; pointer-events: auto; }
.mm-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,26,22,0.45);
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .25s ease;
}
.mobile-menu.open .mm-backdrop { opacity: 1; }
.mm-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--bg);
  padding: 20px 24px 24px;
  display: flex; flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform .28s ease;
  box-shadow: -20px 0 60px rgba(0,0,0,0.18);
  overflow-y: auto;
}
.mobile-menu.open .mm-panel { transform: translateX(0); }
.mm-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.mm-head .logo { font-size: 17px; gap: 10px; }
.mm-close {
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.mm-close:hover { background: var(--bg-2); }
.mm-nav { display: flex; flex-direction: column; }
.mm-nav a {
  padding: 14px 2px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: color .15s ease;
}
.mm-nav a:last-child { border-bottom: 0; }
.mm-nav a:hover,
.mm-nav a.active { color: var(--green); }
.mm-actions {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.mm-actions .btn { justify-content: center; width: 100%; }


@media (max-width: 640px) {
  /* Eyebrow тексты: уменьшаем tracking и размер, чтобы влезало в строку */
  .eyebrow { letter-spacing: 0.06em !important; font-size: 10px !important; gap: 8px !important; }
  /* Скрыть верхнюю мета-строку "MSK / SPB · с 2014" в hero (рейтинг в hero-right остаётся) */
  .hero-eyebrow-row .hero-meta { display: none !important; }
}

/* =============================================================
   Lightbox для галереи / до-после / hero
   ============================================================= */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease;
  display: grid;
  place-items: center;
}
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox .lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 12, 9, 0.92);
  backdrop-filter: blur(8px);
}
.lightbox .lb-figure {
  position: relative; z-index: 1;
  max-width: min(94vw, 1500px);
  max-height: 88vh;
  margin: 0;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.lightbox .lb-img {
  max-width: 100%;
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  object-fit: contain;
  background: #000;
}
.lightbox .lb-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.lightbox .lb-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  color: #f4f6ef;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  z-index: 2;
  transition: background .15s ease;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,0.18); }
.lightbox .lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  color: #f4f6ef;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  z-index: 2;
  transition: background .15s ease;
}
.lightbox .lb-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox.lb-single .lb-prev,
.lightbox.lb-single .lb-next { display: none; }

@media (max-width: 640px) {
  .lightbox .lb-nav { width: 44px; height: 44px; }
  .lightbox .lb-prev { left: 12px; }
  .lightbox .lb-next { right: 12px; }
  .lightbox .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* =============================================================
   Safari iOS / WebKit overflow safety — 2026-04-30
   ============================================================= */

/* overflow-x: clip жёстче hidden и не ломает sticky-позиционирование */
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}

/* Дочерние элементы grid не должны раздувать колонки до min-content */
.ftr-top > *,
.services-grid > *,
.about-strip > *,
.ct-grid > *,
.cta-band > *,
.svc-feature > *,
.wd-bar > *,
.cal-bars { min-width: 0; }

@media (max-width: 900px) {
  /* svc-feature: на мобильном вертикально, без дробной grid */
  .svc-feature { display: flex !important; flex-direction: column !important; }
  .svc-feature .media { width: 100%; aspect-ratio: 16/9; min-height: 200px; }
}

@media (max-width: 640px) {
  /* Футер: на узких — одна колонка вместо 2 */
  .ftr-top { grid-template-columns: 1fr !important; gap: 28px !important; }
  /* Длинные слова в брендовом блоке футера переносятся */
  .ftr-brand .display { word-break: break-word; }
}

/* iPhone SE (320px) и узкие — min-width: 0 на hero и flex/grid children */
.hero-grid > *,
.hero-right > *,
.hero-right,
.hero-eyebrow-row > *,
.hero-ctas > *,
.cta-band .cta-ctas > *,
.mm-actions > *,
.actions > * { min-width: 0; max-width: 100%; }

@media (max-width: 420px) {
  .btn { max-width: 100%; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   Raboty page: fix mobile overflow (iOS Safari) — 2026-05-13
   ============================================================= */

/* На мобилке детальная страница работы — block layout вместо grid,
   чтобы основная колонка не уходила вправо при sidebar 300px */
@media (max-width: 900px) {
  .wd-top, .wd-body { display: block !important; }
  .wd-body > div { min-width: 0; max-width: 100%; }
  .wd-sidebar { position: static !important; margin-top: 32px; }
}

/* Видео-iframe и галерея не должны раздувать колонку */
.wd-body > div > *,
.wd-prose,
.wd-what,
.wd-video,
.gallery-big,
.wd-ba,
.wd-test,
.sv-body > div > * { min-width: 0; max-width: 100%; }

.wd-video iframe,
.sv-video iframe { width: 100% !important; max-width: 100%; }

/* Картинки в любом контенте не должны выходить за родителя */
.wd-prose img, .sv-prose img, .ar-body img { max-width: 100%; height: auto; }

/* Галерея на /raboty/<slug>: на мобилке 2 колонки + сжимаемые элементы */
@media (max-width: 900px) {
  .gallery-big { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-big > * { grid-column: auto !important; min-width: 0; max-width: 100%; aspect-ratio: 4/3 !important; }
  .wd-ba-pair > * { min-width: 0; max-width: 100%; }
}

/* Метаданные работы (площадь/срок/стиль/год) на мобиле — 2 колонки */
@media (max-width: 640px) {
  .wd-bar { grid-template-columns: 1fr 1fr !important; }
  .wd-bar > div { border-right: 0 !important; border-bottom: 1px dashed var(--line); padding: 14px 12px 14px 0 !important; }
  .wd-bar > div:nth-child(2n) { padding-right: 0 !important; }
  .wd-bar > div:last-child,
  .wd-bar > div:nth-last-child(2) { border-bottom: 0; }
  .wd-bar .v { font-size: 17px !important; }
}

/* /raboty/<slug>: на .wrap.wd-body класс .wd-body перебивал горизонтальный padding .wrap
   — возвращаем его, чтобы контент имел такие же отступы как шапка/футер */
.wd-body { padding-left: var(--pad) !important; padding-right: var(--pad) !important; }
