/* ==========================================================================
   Викуп меблів — Харків / Київ
   Палітра: глибокий петроль + папір + маркерний жовтий
   ========================================================================== */

:root {
  --ink: #0F272D;
  --ink-soft: #17383F;
  --ink-line: #2A4E56;
  --paper: #F3F1EB;
  --paper-alt: #E7E4DA;
  --rule: #CBC7BB;
  --accent: #FFC53D;
  --accent-deep: #C98F00;
  --ok: #2E6B58;
  --danger: #A33A2A;
  --dim: #5E6E72;
  --dim-on-ink: #A9BEC3;

  --font-display: "Unbounded", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Courier New", monospace;

  --wrap: 1160px;
  --gap: clamp(20px, 4vw, 40px);
  --radius: 4px;
  --section-y: clamp(56px, 8vw, 104px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(30px, 5.4vw, 60px); }
h2 { font-size: clamp(25px, 3.6vw, 40px); }
h3 { font-size: clamp(17px, 1.7vw, 21px); letter-spacing: -0.01em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  flex: none;
}

.on-ink .eyebrow { color: var(--accent); }

.lead {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--dim);
  max-width: 56ch;
}

.on-ink .lead { color: var(--dim-on-ink); }

.section { padding-block: var(--section-y); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--alt { background: var(--paper-alt); }
.section__head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 52px); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
  box-shadow: 4px 4px 0 var(--ink);
}

.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn--wide { width: 100%; }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  box-shadow: none;
  font-weight: 700;
}
.btn--ghost:hover { transform: none; box-shadow: none; background: rgba(255, 197, 61, .14); }

.on-ink .btn { border-color: var(--accent-deep); box-shadow: 4px 4px 0 var(--accent-deep); }
.on-ink .btn:hover { box-shadow: 6px 6px 0 var(--accent-deep); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* --- Шапка -------------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--ink-line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand__mark {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 6px;
  border-radius: 2px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
}

.topbar__links a { text-decoration: none; color: var(--dim-on-ink); }
.topbar__links a:hover { color: var(--paper); }
.topbar__links .btn { padding: 9px 18px; font-size: 14px; color: var(--ink); }

@media (max-width: 860px) {
  .topbar__links a:not(.btn) { display: none; }
}

/* --- Герой -------------------------------------------------------------- */

.hero {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(44px, 6vw, 84px) clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% 40%;
  height: 340px;
  background: radial-gradient(ellipse at center, rgba(255, 197, 61, .10), transparent 68%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 20px; }
.hero h1 mark { background: none; color: var(--accent); }

.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--dim-on-ink);
  max-width: 46ch;
  margin-bottom: 30px;
}

.facts {
  display: grid;
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.fact { background: var(--ink); padding: 16px 18px; }

.fact__value {
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}

.fact__label {
  font-size: 13px;
  color: var(--dim-on-ink);
  line-height: 1.35;
  display: block;
  margin-top: 5px;
}

@media (max-width: 520px) {
  .facts { grid-template-columns: 1fr; }
}

/* --- Калькулятор (сигнатурний блок) ------------------------------------- */

.tally {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  box-shadow: 10px 10px 0 rgba(255, 197, 61, .18);
  overflow: hidden;
}

.tally__head {
  padding: 20px 22px 16px;
  border-bottom: 1px dashed var(--rule);
}

.tally__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.tally__note { font-size: 13.5px; color: var(--dim); margin: 0; }

.tally__rows { padding: 6px 22px; }

.trow {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}

.trow:last-child { border-bottom: 0; }

.trow__name { font-weight: 700; font-size: 15.5px; }

.trow__price {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--dim);
  display: block;
  margin-top: 2px;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
}

.stepper button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .12s ease;
}

.stepper button:hover { background: var(--accent); }
.stepper button:disabled { opacity: .3; cursor: default; background: transparent; }

.stepper output {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  min-width: 26px;
  text-align: center;
}

.tally__foot {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 22px 22px;
}

.tally__sumrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.tally__sumlabel { font-size: 13px; color: var(--dim-on-ink); }

.tally__sum {
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.tally__hint {
  font-size: 13px;
  color: var(--dim-on-ink);
  margin: 8px 0 16px;
  min-height: 2.6em;
}

.tally__hint.is-warning { color: var(--accent); }

/* --- Форма -------------------------------------------------------------- */

.formcard {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 8px 8px 0 var(--accent);
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color .14s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); }

.field textarea { resize: vertical; min-height: 84px; }

.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--dim);
  margin: 18px 0 20px;
}

.consent input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--ink);
}

.consent a { color: var(--ink); }

.formnote {
  font-size: 13px;
  color: var(--dim);
  text-align: center;
  margin-top: 14px;
}

.formstatus {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  display: none;
}

.formstatus.is-visible { display: block; }
.formstatus.is-ok { background: rgba(46, 107, 88, .12); color: var(--ok); }
.formstatus.is-error { background: rgba(163, 58, 42, .1); color: var(--danger); }

/* --- Сітки карток ------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.section--alt .card { background: var(--paper); }

.card h3 { margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--dim); }

.card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 12px;
}

/* --- Беремо / не беремо ------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.panel {
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--rule);
  background: var(--paper);
}

.panel--yes { border-left: 5px solid var(--ok); }
.panel--no { border-left: 5px solid var(--accent-deep); background: var(--paper-alt); }

.panel h3 { margin-bottom: 14px; }

.ticks { list-style: none; margin: 0; padding: 0; }

.ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 15.5px;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--ok);
  border-radius: 2px;
}

.panel--no .ticks li::before { border-color: var(--accent-deep); border-radius: 50%; }

.panel__after {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--rule);
  font-size: 14.5px;
  color: var(--dim);
}

/* --- Кроки -------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.step { background: var(--ink); padding: 26px 24px 30px; }

.step__no {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; font-size: 18px; }
.step p { font-size: 14.5px; color: var(--dim-on-ink); }

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

.faq { max-width: 800px; }

.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 40px 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent-deep);
  transition: transform .18s ease;
}

.faq details[open] summary::after { content: "−"; }

.faq p { padding: 0 40px 20px 0; color: var(--dim); font-size: 15.5px; }

/* --- Контакти ----------------------------------------------------------- */

.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.contact {
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  display: block;
  transition: border-color .14s ease, background .14s ease;
}

.contact:hover { border-color: var(--accent); background: var(--ink-soft); }

.contact__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 9px;
}

.contact__value { font-size: 17px; font-weight: 700; word-break: break-word; }
.contact__meta { font-size: 13.5px; color: var(--dim-on-ink); margin-top: 5px; display: block; }

/* --- Підвал ------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: var(--dim-on-ink);
  border-top: 1px solid var(--ink-line);
  padding-block: 44px 40px;
  font-size: 14.5px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 32px;
}

@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; } }

.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 500;
}

.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 8px; }
.footer a { color: var(--dim-on-ink); text-decoration: none; }
.footer a:hover { color: var(--paper); }

.footer__bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  font-size: 13px;
}

/* --- Мобільна панель дії ------------------------------------------------ */

.mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
}

.mobilebar .btn { flex: 1; padding: 13px 12px; font-size: 15px; box-shadow: none; }
.mobilebar .btn:hover { transform: none; box-shadow: none; }

@media (max-width: 720px) {
  .mobilebar { display: flex; }
  body { padding-bottom: 78px; }
}

/* --- Cookie-банер ------------------------------------------------------- */

.cookiebar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  max-width: 560px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--accent);
  padding: 18px 20px;
  display: none;
}

.cookiebar.is-visible { display: block; }
.cookiebar p { font-size: 14px; margin-bottom: 14px; }
.cookiebar__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookiebar .btn { padding: 10px 18px; font-size: 14px; box-shadow: 3px 3px 0 var(--ink); }

@media (max-width: 720px) { .cookiebar { bottom: 86px; } }

/* --- Текстові сторінки -------------------------------------------------- */

.doc { max-width: 780px; padding-block: clamp(44px, 6vw, 80px); }
.doc h1 { margin-bottom: 10px; }
.doc h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 40px 0 14px; }
.doc p, .doc li { font-size: 16px; color: #2C3B40; }
.doc ul, .doc ol { padding-left: 22px; margin: 0 0 1em; }
.doc li { margin-bottom: 7px; }

.doc__meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 34px;
}

.doc__back { display: inline-block; margin-top: 44px; font-weight: 700; }

.todo {
  background: rgba(255, 197, 61, .2);
  border-left: 4px solid var(--accent-deep);
  padding: 12px 16px;
  font-size: 14.5px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

/* --- Сторінка подяки ---------------------------------------------------- */

.thanks {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 60px;
}

.thanks__inner { max-width: 560px; }
.thanks h1 { margin-bottom: 18px; }

/* --- Анімації ----------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- Галерея виїздів ---------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-alt);
  border: 1px solid var(--rule);
}

.shot--lead { grid-column: span 2; grid-row: span 2; }

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.shot:hover img { transform: scale(1.04); }

.shot__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 13px;
  background: linear-gradient(to top, rgba(15, 39, 45, .92), transparent);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: .01em;
}

.shot__cap b {
  display: block;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0;
}

/* Порожній слот — видно, куди класти фото. Прибрати після зйомки. */
.shot--empty {
  border: 2px dashed var(--rule);
  background: repeating-linear-gradient(
    45deg,
    var(--paper-alt),
    var(--paper-alt) 11px,
    #DEDBD1 11px,
    #DEDBD1 22px
  );
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}

.shot--empty span {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--dim);
}

.shot--empty b { display: block; color: var(--ink); font-size: 13px; margin-bottom: 6px; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 165px; }
  .shot--lead { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .shot--lead { grid-column: span 1; }
}

/* --- SEO-сторінки ------------------------------------------------------- */

.crumbs {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--dim);
  margin-bottom: 22px;
  letter-spacing: .02em;
}

.crumbs a { color: var(--accent-deep); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 6px; opacity: .5; }

.doc__lead {
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.55;
  color: #2C3B40;
  margin: 18px 0 32px;
  max-width: 60ch;
}

.quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}

.quickfacts div { background: var(--paper); padding: 16px 14px; }

.quickfacts b {
  display: block;
  font-family: var(--font-mono);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.2;
}

.quickfacts span { display: block; font-size: 12.5px; color: var(--dim); margin-top: 4px; }

@media (max-width: 620px) { .quickfacts { grid-template-columns: repeat(2, 1fr); } }

.seo-block { margin-top: 34px; }
.seo-block h2 { margin-bottom: 12px; }
.seo-block p { max-width: 68ch; }

.cta-strip {
  margin-top: 48px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
}

.cta-strip h2 { color: var(--paper); margin-bottom: 10px; }
.cta-strip p { color: var(--dim-on-ink); font-size: 15px; margin-bottom: 22px; }

.related { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--rule); }
.related h2 { font-size: 19px; margin-bottom: 14px; }
.related ul { list-style: none; margin: 0; padding: 0; }
.related li { margin-bottom: 9px; }
.related a { color: var(--accent-deep); font-weight: 600; }

/* Посилання на послуги в підвалі головної */
.footer .services a { color: var(--dim-on-ink); }
