/* Самодостатні стилі підвалу: dms.html і services.html не підключають
   загальний CSS, а підвал стоїть на всіх сторінках. Усе заскоуплено під
   .site-footer, щоб нічого не протікало у верстку сторінки. */
.site-footer{background:var(--c-ink);color:#c9d4e2;font-family:var(--c-font);font-size:13.5px;line-height:1.6;box-sizing:border-box;padding:20px 0 19px}
.site-footer *{box-sizing:border-box}
.site-footer a{color:inherit;text-decoration:none}
.site-footer a:hover{color:var(--c-lime)}
.site-footer .shell{width:min(var(--c-shell),calc(100% - 56px));margin-inline:auto}
.site-footer .footer-bar{display:grid;grid-template-columns:auto 1fr auto;gap:14px 48px;align-items:start}
.site-footer .footer-col{display:flex;flex-direction:column;gap:2px;min-width:0}
.site-footer .footer-phone{font-size:19px;font-weight:700;letter-spacing:-.01em;color:#fff;line-height:1.3}
.site-footer .footer-row{display:flex;flex-wrap:wrap;gap:4px 16px}
.site-footer .footer-row a{color:#fff;font-weight:600;white-space:nowrap}
.site-footer .footer-row a:hover{color:var(--c-lime)}
.site-footer .footer-label{color:#fff;font-weight:700;font-size:12px;letter-spacing:.1em;text-transform:uppercase}
.site-footer .footer-legal{text-align:right;font-size:12.5px;color:#93a4b8}
.site-footer .footer-legal .footer-label{text-transform:none;letter-spacing:0;font-size:13px}
.site-footer .footer-legal .footer-row{justify-content:flex-end}
.site-footer .footer-legal .footer-row a{color:var(--c-lime);font-weight:600;font-size:12.5px}

/* Підвал виїжджає, коли екран перестає рухатися, і ховається під час прокрутки.
   Нижній відступ сторінки дорівнює його висоті, щоб кінець сторінки не лишався
   назавжди прикритим. */
body




@media(max-width:1100px){
  .site-footer .footer-bar{grid-template-columns:auto 1fr;gap:12px 32px}
  .site-footer .footer-legal{grid-column:1 / -1;text-align:left}
  .site-footer .footer-legal .footer-row{justify-content:flex-start}
}
@media(max-width:700px){
  /* На телефоні підвал не має з'їдати третину екрана: адреса і повна назва
     лишаються на сторінці контактів. */
  .site-footer .footer-address{display:none}
  .site-footer{padding:13px 0 12px;font-size:12.5px}
  .site-footer .shell{width:min(100% - 28px,var(--c-shell))}
  .site-footer .footer-bar{grid-template-columns:1fr;gap:12px}
  .site-footer .footer-legal{text-align:left}
  .site-footer .footer-phone{font-size:17px}
  .site-footer .footer-bar{gap:9px}
}

/* Підвал пришпилений до низу, але його можна згорнути: у згорнутому стані
   лишається смужка з телефоном. Раніше він займав 24% екрана телефона
   постійно, а без пришпилення контакти опинялися за 7000 пікселів прокрутки. */
.site-footer{position:fixed;left:0;right:0;bottom:0;z-index:40;padding:0;
  box-shadow:0 -12px 28px rgba(10,20,35,.28)}
.site-footer .footer-dock{display:flex;align-items:center;justify-content:space-between;
  gap:16px;min-height:44px;padding:4px 0}
.footer-dock-phone{font-weight:700;font-size:15px;color:#fff!important;white-space:nowrap}
.footer-toggle{display:inline-flex;align-items:center;gap:8px;min-height:36px;padding:6px 10px;
  background:none;border:0;border-radius:8px;color:#c9d4e2;font:inherit;font-size:13px;cursor:pointer}
.footer-toggle:hover{background:rgba(255,255,255,.08);color:#fff}
.footer-toggle:focus-visible{outline:2px solid var(--c-lime);outline-offset:2px}
.footer-chev{transition:transform .2s ease}
.site-footer .footer-body{overflow:hidden;transition:height .24s ease}
.site-footer.is-collapsed .footer-body{height:0!important}
.site-footer.is-collapsed .footer-chev{transform:rotate(180deg)}
.site-footer .footer-body > .footer-bar{padding-bottom:16px}
/* телефон уже стоїть у смужці — у розгорнутій частині він зайвий */
.site-footer .footer-body .footer-phone{display:none}
@media (prefers-reduced-motion:reduce){.site-footer .footer-body,.footer-chev{transition:none}}
@media (max-width:700px){.footer-dock-phone{font-size:14px}.footer-toggle{font-size:12.5px}}
