/* UAKOTEL - light industrial · spacing + mobile polish */
:root {
  --bg: #f4f6f8;
  --bg-soft: #eef1f4;
  --surface: #ffffff;
  --ink: #14171c;
  --ink-2: #3a424e;
  --muted: #6b7380;
  --line: rgba(20, 23, 28, .07);
  --line-strong: rgba(20, 23, 28, .12);
  --brand: #d01224;
  --brand-hover: #b40e1e;
  --brand-soft: rgba(208, 18, 36, .08);
  --brand-ring: rgba(208, 18, 36, .2);
  --ok-bg: #e8f6ec;
  --ok-ink: #1a5c32;
  --err-bg: #fdeeee;
  --err-ink: #8a1f1f;
  --footer: #171a1f;
  --footer-ink: #e8eaed;

  /* Spacing scale - outer/inner use the same rhythm */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 20px;
  --s6: 24px;
  --s7: 32px;
  --s8: 40px;
  --pad: clamp(16px, 4.2vw, 24px);
  --inset: var(--s5);
  --stack: var(--s6);
  --section: clamp(40px, 6.5vw, 72px);
  --gap: var(--s4);
  --gap-lg: var(--s6);

  --wrap: 1100px;
  --wrap-narrow: 700px;
  --wrap-read: 820px;
  --header-h: 64px;
  --dock-h: 68px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 28px rgba(20, 23, 28, .08);
  --shadow-hover: 0 12px 32px rgba(20, 23, 28, .12);
  --ease: .2s cubic-bezier(.22, 1, .36, 1);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --tap: 44px;
}

@media (min-width: 768px) {
  :root {
    --inset: var(--s6);
    --header-h: 68px;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
  color-scheme: light;
}

body {
  margin: 0;
  font: 400 16px/1.55 var(--font);
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

body.is-locked {
  /* Свідомо БЕЗ overflow:hidden — воно ламає position:sticky і шапка
     з’їжджає вгору за межі екрана після прокрутки. Скрол тримаємо JS. */
  overscroll-behavior: none;
}
html.is-locked {
  overscroll-behavior: none;
  padding-right: var(--lock-gap, 0px);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure, dl, dd, dt { margin: 0; }
ul, ol { padding: 0; list-style: none; }

::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

.skip { position: absolute; left: -999px; }
.skip:focus {
  left: var(--s3);
  top: var(--s3);
  z-index: 100;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

/* One content column for every block */
.wrap {
  width: min(100% - (var(--pad) * 2), var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - (var(--pad) * 2), var(--wrap-narrow)); }
.wrap--reading { width: min(100% - (var(--pad) * 2), var(--wrap-read)); }

/* Type */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.h-xl {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.h-lg {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h-md {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}
.h-sm {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.text-lg {
  margin-top: var(--s3);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 38rem;
}
.text-sm {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
}
.meta-label {
  display: block;
  margin-bottom: var(--s2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  transition: color var(--ease);
}
.text-link svg { width: 16px; height: 16px; }

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s3);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.price-tag__val {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
}
.price-tag small {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}
.price-tag b {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-tag i {
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2);
}
.price-tag--sm {
  margin-top: var(--s2);
}
.price-tag--sm b { font-size: 1.1rem; }
.price-tag--sm small,
.price-tag--sm i { font-size: .75rem; }
.price-tag--rail {
  margin-top: 0;
  gap: 6px;
}
.price-tag--rail b { font-size: 1.05rem; }
.price-tag--rail small,
.price-tag--rail i { font-size: .72rem; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s5);
}
.actions .btn { flex: 1 1 auto; min-width: min(100%, 148px); }
@media (min-width: 480px) {
  .actions .btn { flex: 0 1 auto; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  min-height: var(--tap);
  padding: 0 var(--s5);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn .gicon { font-size: 18px; flex-shrink: 0; }
.btn:active { transform: scale(.98); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--block { width: 100%; }

/* Google Material Symbols */
.material-symbols-outlined.gicon {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  color: currentColor;
  user-select: none;
  speak: never;
}
.text-link .gicon { font-size: 18px; }
.nav-toggle .gicon { font-size: 22px; }
.modal__close .gicon { font-size: 22px; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
  .btn--brand:hover { background: var(--brand-hover); }
  .btn--ghost:hover {
    border-color: var(--ink);
    background: var(--bg-soft);
  }
  .text-link:hover { color: var(--brand-hover); }
}

/* Header
   Не використовуємо backdrop-filter: у Safari/Chrome він робить containing block
   для position:fixed нащадків — мобільний drawer (.nav) опиняється всередині
   смужки хедера (~68px) і «не відкривається». */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.site-header.is-solid {
  background: #fff;
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(20, 23, 28, .06);
}
/* Відкрите меню: шапка жорстко прибита до верху viewport (не sticky) */
body.nav-open .site-header,
body.modal-open .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 70;
  background: #fff;
  border-bottom-color: var(--line);
}
/* Компенсація місця шапки в потоці, коли вона стає fixed */
body.nav-open::before,
body.modal-open::before {
  content: "";
  display: block;
  height: var(--header-h);
  width: 100%;
  pointer-events: none;
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
  height: 44px;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--line);
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1.15;
}
.brand__text strong {
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand__text small {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}
@media (min-width: 480px) {
  .brand__text small { max-width: 200px; }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  height: 44px;
}
.site-header__tel {
  display: none;
  align-items: center;
  height: 44px;
  padding: 0 4px;
  font-size: .95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
  color: var(--ink);
  transition: color var(--ease);
}
.site-header__cta {
  height: 44px;
  min-height: 44px;
  padding-inline: 16px;
}
.nav-toggle {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; display: none; }
.burger__menu,
.burger__close { display: inline-flex; align-items: center; justify-content: center; }
.burger__close { display: none; }
body.nav-open .burger__menu { display: none; }
body.nav-open .burger__close { display: inline-flex; }

/* Mobile drawer — fixed до viewport (не всередині stacking context хедера) */
.nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100%, 360px);
  max-width: 100vw;
  padding: var(--s5) var(--pad) calc(var(--s6) + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transform: translate3d(105%, 0, 0);
  transition: transform var(--ease);
  z-index: 60;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 899px) {
  .nav {
    padding-bottom: calc(var(--s6) + var(--dock-h) + env(safe-area-inset-bottom, 0px));
  }
}
body.nav-open .nav {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}
.nav__links {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.nav__links a {
  min-height: var(--tap);
  padding: 12px var(--s3);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  transition: background var(--ease), color var(--ease);
}
.nav__links a.is-on {
  background: var(--brand-soft);
  color: var(--brand);
}
.nav__drawer-act {
  display: grid;
  gap: var(--s3);
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
}
.nav__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  text-align: center;
}
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(20, 23, 28, .48);
  z-index: 55;
  opacity: 0;
  animation: fade-in .2s forwards;
}
.nav-scrim[hidden] { display: none !important; animation: none; }

@keyframes fade-in {
  to { opacity: 1; }
}

@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover {
    background: var(--brand-soft);
    color: var(--brand);
  }
  .site-header__tel:hover { color: var(--brand); }
}

/* Desktop / large tablet: single row — brand | nav | phone+CTA */
@media (min-width: 1100px) {
  .nav-toggle { display: none; }
  .site-header__tel { display: inline-flex; }
  .site-header__cta { min-width: 120px; }

  .site-header__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: var(--s5);
  }

  .nav {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    max-width: none;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
    z-index: auto;
  }
  body.nav-open .nav {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2px;
    height: 44px;
  }
  .nav__links a {
    min-height: 44px;
    height: 44px;
    padding: 0 12px;
    font-size: .92rem;
    line-height: 1;
  }
  /* Phone + CTA live only in .site-header__actions on desktop */
  .nav__drawer-act { display: none; }
}

@media (max-width: 420px) {
  .site-header__cta { padding-inline: 12px; font-size: .88rem; }
  .brand__text small { display: none; }
}

/* Flash */
.flash {
  width: min(100% - (var(--pad) * 2), var(--wrap));
  margin: var(--s4) auto 0;
  padding: var(--s4);
  border-radius: var(--radius-sm);
  background: var(--ok-bg);
  color: var(--ok-ink);
  font-weight: 600;
}
.flash--err {
  background: var(--err-bg);
  color: var(--err-ink);
}

/* Success overlay — 60% viewport, auto-hide via JS */
.flash-ok {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: var(--pad);
  pointer-events: auto;
  opacity: 1;
  transition: opacity .45s var(--ease);
}
.flash-ok.is-hiding {
  opacity: 0;
  pointer-events: none;
}
.flash-ok__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 28, .45);
}
.flash-ok__panel {
  position: relative;
  z-index: 1;
  width: 60vw;
  height: 60vh;
  max-width: min(60vw, 920px);
  max-height: min(60vh, 640px);
  min-width: min(92vw, 280px);
  min-height: min(42vh, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.2vh, 20px);
  padding: clamp(20px, 4vw, 48px);
  text-align: center;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  transform: scale(1);
  transition: transform .45s var(--ease);
}
.flash-ok.is-hiding .flash-ok__panel {
  transform: scale(.96);
}
.flash-ok__eyebrow {
  margin: 0;
  font-size: clamp(.75rem, 1.4vw, .9rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}
.flash-ok__title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.flash-ok__text {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-2);
}

@media (max-width: 640px) {
  .flash-ok__panel {
    width: 88vw;
    height: 55vh;
    max-width: none;
    max-height: none;
  }
}

/* Shared band padding - hero / feature / banner aligned */
.band {
  padding-block: var(--section);
}

/* Hero */
.hero-split {
  padding: var(--section) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.hero-split__grid {
  display: grid;
  gap: var(--stack);
  align-items: center;
}
.hero-split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split__meta { margin-top: var(--s4); }

@media (min-width: 900px) {
  .hero-split__grid {
    grid-template-columns: 1.05fr .95fr;
    gap: var(--s8);
  }
  .hero-split__media { aspect-ratio: 5 / 4; }
}

/* Page banner */
.page-banner {
  padding: var(--section) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-banner--text { padding-bottom: calc(var(--section) - var(--s4)); }
.page-banner--text .actions { margin-top: var(--s5); }
.area-page .page-banner--text .text-lg,
.area-page .section__head .text-lg {
  max-width: none;
}
.area-page .section__head {
  max-width: none;
}
.area-page .prose {
  max-width: none;
}
.area-page .svc-mid-cta__text {
  max-width: none;
}
.area-page__title {
  text-wrap: balance;
  line-height: 1.15;
  max-width: 48rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.page-banner__grid {
  display: grid;
  gap: var(--stack);
  align-items: center;
}
.page-banner__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.page-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 800px) {
  .page-banner__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: var(--s8);
  }
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: var(--s4);
  font-size: .85rem;
  color: var(--muted);
}
.crumbs a { transition: color var(--ease); }
.crumbs a::after,
.crumbs span:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--line-strong);
}
.crumbs span:last-child { color: var(--ink-2); font-weight: 600; }
@media (hover: hover) and (pointer: fine) {
  .crumbs a:hover { color: var(--brand); }
}

/* Price rail */
.price-rail {
  padding: var(--s4) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.price-rail__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: var(--s1);
  margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 23, 28, .18) transparent;
}
.price-rail__track::-webkit-scrollbar { height: 4px; }
.price-rail__track::-webkit-scrollbar-track { background: transparent; }
.price-rail__track::-webkit-scrollbar-thumb {
  background: rgba(20, 23, 28, .16);
  border-radius: 999px;
}
@media (min-width: 1100px) {
  .price-rail__track {
    margin-inline: 0;
    padding-inline: 0;
  }
}
.price-rail__track.is-drag { cursor: grabbing; }
.price-rail__note,
.price-rail__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 148px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-align: left;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.price-rail__note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 132px;
}
.price-rail__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.price-rail__item:active { transform: scale(.98); }
.price-rail__name {
  display: block;
  margin: 0;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink-2);
}
@media (hover: hover) and (pointer: fine) {
  .price-rail__item:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
  }
}

/* Sections - equal outer rhythm */
.section {
  padding: var(--section) 0;
}
.section--muted { background: var(--bg-soft); }
.section__head {
  margin-bottom: var(--stack);
  max-width: 38rem;
}
.section__head--wide { max-width: none; }
.section__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
  max-width: none;
}
.section__head--row > div { max-width: 38rem; }

/* Featured */
.feature {
  padding: var(--section) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.feature__grid {
  display: grid;
  gap: var(--stack);
  align-items: center;
}
.feature__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  background: var(--bg-soft);
}
.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
@media (min-width: 860px) {
  .feature__grid {
    grid-template-columns: .9fr 1.1fr;
    gap: var(--s8);
  }
  .feature--flip .feature__media { order: 2; }
  .feature--flip .feature__copy { order: 1; }
}
@media (hover: hover) and (pointer: fine) {
  .feature:hover .feature__media img { transform: scale(1.03); }
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.metrics li {
  padding: var(--inset);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.metrics li:last-child { border-bottom: 0; }
.metrics b {
  display: block;
  margin-bottom: var(--s2);
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.metrics span {
  font-size: .9rem;
  color: var(--ink-2);
  font-weight: 600;
}
@media (min-width: 640px) {
  .metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .metrics li {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .metrics li:last-child { border-right: 0; }
}
@media (min-width: 640px) {
  .metrics--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .metrics--grid li {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .metrics--grid li:nth-child(2n) { border-right: 0; }
  .metrics--grid li:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 960px) {
  .metrics--grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .metrics--grid li { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .metrics--grid li:nth-child(2n) { border-right: 1px solid var(--line); }
  .metrics--grid li:nth-child(3n) { border-right: 0; }
  .metrics--grid li:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .metrics--grid li:nth-last-child(-n+3) { border-bottom: 0; }
}

/* Pros */
.pros {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 720px) {
  .pros { grid-template-columns: 1fr 1fr; gap: var(--gap); }
}
.pros__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--s4);
  padding: var(--inset);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.pros__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pros__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.pros__item p {
  margin-top: var(--s2);
  color: var(--ink-2);
  font-size: .95rem;
}
@media (hover: hover) and (pointer: fine) {
  .pros__item:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
}
.timeline li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--s4);
  padding: var(--inset) 0;
  border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline__n {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.timeline p {
  margin-top: var(--s2);
  color: var(--ink-2);
}
@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
  }
  .timeline li {
    grid-template-columns: 1fr;
    padding: var(--inset);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  }
  .timeline li:last-child { border-bottom: 1px solid var(--line); }
}
@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .timeline li:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }
}

/* Service list */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.svc-list__item {
  display: grid;
  gap: var(--s4);
  padding: var(--inset);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.svc-list__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.svc-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.svc-list__body .h-md a { transition: color var(--ease); }
.svc-list__body .text-sm {
  margin-top: var(--s2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--ink-2);
}
.svc-list__body .price-tag {
  margin-top: var(--s2);
}
.svc-list__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}
@media (min-width: 780px) {
  .svc-list__item {
    grid-template-columns: 180px 1fr auto;
    align-items: center;
  }
  .svc-list__media {
    aspect-ratio: 4 / 3;
    width: 180px;
  }
  .svc-list__actions {
    grid-template-columns: 1fr;
    min-width: 132px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .svc-list__item:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }
  .svc-list__item:hover .svc-list__media img { transform: scale(1.04); }
  .svc-list__body .h-md a:hover { color: var(--brand); }
}

/* Works */
.shots {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 700px) {
  .shots { grid-template-columns: repeat(3, 1fr); }
}
.shots__item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.shots__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.shots__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--inset);
  background: linear-gradient(transparent, rgba(20, 23, 28, .8));
  color: #fff;
}
.shots__cap .eyebrow { color: #ffb3ba; }
.shots__cap .eyebrow::before { background: currentColor; }
.shots__cap .h-sm { color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .shots__item:hover img { transform: scale(1.05); }
}

.works-grid {
  display: grid;
  gap: var(--gap-lg);
}
@media (min-width: 720px) {
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .works-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.works-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.works-card__media {
  display: block;
  aspect-ratio: 16 / 11;
  background: var(--bg-soft);
  overflow: hidden;
}
.works-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.works-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--inset);
  flex: 1;
}
.works-card__body .h-md {
  margin: 0;
  line-height: 1.25;
}
.works-card__body .h-md a { transition: color var(--ease); }
.works-card__body .text-sm { margin: 0; }
.works-card__body .price-tag { margin-top: auto; padding-top: var(--s2); }
.works-card__act {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s3);
}
.works-card__act .btn { flex: 1 1 auto; min-width: 0; }
@media (hover: hover) and (pointer: fine) {
  .works-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
  }
  .works-card:hover .works-card__media img { transform: scale(1.04); }
  .works-card__body .h-md a:hover { color: var(--brand); }
}

/* FAQ */
.qa {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.qa details { border-bottom: 1px solid var(--line); }
.qa details:last-child { border-bottom: 0; }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: var(--inset);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  min-height: var(--tap);
  transition: background var(--ease), color var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "expand_more";
  font-family: "Material Symbols Outlined", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--brand);
  line-height: 1;
}
.qa details[open] summary::after { content: "expand_less"; }
.qa details[open] summary {
  color: var(--brand);
  background: var(--brand-soft);
}
.qa details > p,
.qa details > div {
  padding: var(--inset);
  margin: 0;
  color: var(--ink-2);
  border-top: 1px solid transparent;
}
.qa details[open] > p,
.qa details[open] > div {
  border-top-color: rgba(208, 18, 36, .12);
  padding-top: var(--inset);
  padding-bottom: var(--inset);
}
.qa__body.prose {
  color: var(--ink-2);
}
.qa__body.prose p {
  margin: 0;
}
.qa__body.prose p + p {
  margin-top: var(--s3);
}
.qa__body.prose strong {
  color: var(--ink);
  font-weight: 700;
}
.qa summary .h-md { display: inline; }
.policy-page .qa {
  width: 100%;
}
.policy-page .section__head {
  max-width: none;
}
@media (hover: hover) and (pointer: fine) {
  .qa summary:hover { background: var(--bg-soft); }
  .qa details[open] summary:hover { background: var(--brand-soft); }
}

/* CTA */
.leadbox {
  padding: var(--section) 0;
  background: var(--ink);
  color: #fff;
}
.leadbox .eyebrow { color: #ff8a95; }
.leadbox .h-lg { color: #fff; }
.leadbox .text-lg { color: rgba(255, 255, 255, .78); }
.leadbox__grid {
  display: grid;
  gap: var(--stack);
}
.leadbox__phones {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s5);
  margin-top: var(--s5);
}
.leadbox__phones a {
  font-size: 1.12rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  transition: color var(--ease);
}
.leadbox__form {
  padding: var(--inset);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
}
@media (min-width: 860px) {
  .leadbox__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--s8);
  }
}
@media (hover: hover) and (pointer: fine) {
  .leadbox__phones a:hover { color: #ff8a95; }
}

/* Form */
.form { position: relative; display: grid; gap: var(--s4); }
.field { display: grid; gap: var(--s2); }
.field > span {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-2);
}
.field__opt { font-weight: 500; color: var(--muted); }
.field input,
.field textarea {
  width: 100%;
  min-height: var(--tap);
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  resize: vertical;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { min-height: 96px; }
.field input:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-ring);
}
.form__note a {
  color: var(--brand);
  text-decoration: underline;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Contacts */
.contacts {
  display: grid;
  gap: var(--stack);
}
.contacts-layout {
  display: grid;
  gap: var(--stack);
  align-items: start;
}
@media (min-width: 900px) {
  .contacts-layout {
    grid-template-columns: 1.05fr .95fr;
    gap: var(--s8);
  }
}
.contacts__phones {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s5);
}
.contacts__phones a {
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  transition: color var(--ease);
}
.contacts__phones .gicon { font-size: 1.15em; color: var(--brand); }
.contacts__meta {
  display: grid;
  gap: var(--s4);
  margin-bottom: var(--s5);
  padding: var(--inset);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.contacts__meta dd {
  margin-top: var(--s1);
  color: var(--ink-2);
  line-height: 1.5;
}
.contacts-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s3);
}
.contacts-points li {
  padding: var(--inset);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.contacts-points strong {
  display: block;
  margin-bottom: var(--s2);
  color: var(--ink);
}
.contacts-points p {
  margin: 0;
  color: var(--ink-2);
  font-size: .94rem;
  line-height: 1.55;
}
.contacts-form-card {
  padding: var(--inset);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.contacts-form-card .h-md { margin: var(--s2) 0 var(--s3); }
.contacts-form-card .text-sm { margin: 0 0 var(--s5); }
.contacts-form-card .form { margin-top: 0; }
@media (min-width: 900px) {
  .contacts-layout__form { position: sticky; top: calc(var(--header-h) + var(--s4)); }
}
@media (hover: hover) and (pointer: fine) {
  .contacts__phones a:hover { color: var(--brand); }
}

/* Price groups */
.price-group {
  margin-bottom: var(--stack);
  padding: var(--inset);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.price-group:last-of-type { margin-bottom: 0; }
.price-group__head {
  display: grid;
  gap: var(--s4);
  margin-bottom: var(--s5);
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--line);
}
.price-group__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.price-group__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 720px) {
  .price-group__head {
    grid-template-columns: 160px 1fr;
    align-items: center;
  }
  .price-group__media { aspect-ratio: 4 / 3; }
}

.plist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plist__row {
  display: grid;
  gap: 10px 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.plist__main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.plist__n {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 8px;
  background: var(--bg-soft);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.plist__name {
  min-width: 0;
}
.plist__name .h-sm {
  margin: 0;
  line-height: 1.3;
}
.plist__name .text-sm {
  margin: 4px 0 0;
  line-height: 1.4;
}
.plist__row > .price-tag {
  margin-top: 0;
}
.plist__act .btn {
  width: 100%;
  min-height: 40px;
  padding-inline: 14px;
}
.plist__note { margin-top: var(--s4); }
@media (min-width: 800px) {
  .plist__row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px 16px;
  }
  .plist__act .btn { width: auto; }
}
@media (hover: hover) and (pointer: fine) {
  .plist__row:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
  }
}

/* Service page */
.svc__hero {
  padding: var(--section) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.svc__hero-grid {
  display: grid;
  gap: var(--stack);
  align-items: center;
}
.svc__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc__body {
  display: grid;
  gap: var(--stack);
  padding: var(--section) 0;
}
.svc-side {
  padding: var(--inset);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: var(--s3);
  align-content: start;
  height: fit-content;
}
.svc-side > .price-tag {
  margin-top: 0;
}
.svc-side__points { display: grid; gap: var(--s2); }
.svc-side__points li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-2);
  font-size: .95rem;
}
.svc-side__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.svc-side > a {
  padding: 10px 0;
  min-height: var(--tap);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 600;
  font-size: .92rem;
  transition: color var(--ease);
}
.svc-side > a.is-on { color: var(--brand); }
.svc-side__more { margin-top: var(--s2); }
.svc-prices { margin-top: var(--stack); }
.svc-prices .h-md { margin-bottom: var(--s4); }
.svc-block { margin-top: var(--stack); }
.svc-block > .h-md:first-child { margin-top: 0; }
.svc-mid-cta {
  margin: var(--stack) 0;
  padding: var(--inset);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.svc-mid-cta--after { margin-top: var(--stack); }
.svc-mid-cta__text {
  margin: 0 0 var(--s4);
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.55;
  max-width: 42rem;
}
.svc-mid-cta .actions { margin: 0; }

@media (min-width: 900px) {
  .svc__hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: var(--s8);
  }
  .svc__body {
    grid-template-columns: 1fr 300px;
    gap: var(--s8);
    align-items: start;
  }
}
@media (hover: hover) and (pointer: fine) {
  .svc-side > a:hover { color: var(--brand); }
}

/* SEO block (about) */
.seo-block__head {
  margin-bottom: var(--stack);
  max-width: 46rem;
}
.seo-block__lead {
  margin: var(--s4) 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.seo-block__body {
  display: grid;
  gap: var(--s4);
  margin-bottom: var(--stack);
  color: var(--ink-2);
  font-size: .98rem;
  line-height: 1.65;
  max-width: 52rem;
}
.seo-block__body p { margin: 0; }

.seo-flow {
  list-style: none;
  margin: 0 0 var(--stack);
  padding: 0;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
@media (min-width: 720px) {
  .seo-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .seo-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.seo-flow li {
  display: grid;
  gap: var(--s2);
  padding: var(--inset);
  background: var(--surface);
  min-height: 100%;
}
.seo-flow__n {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.seo-flow strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}
.seo-flow p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.seo-block__reasons {
  padding-top: var(--s2);
  border-top: 1px solid var(--line);
}
.seo-block__reasons .h-md {
  margin: 0 0 var(--s5);
  max-width: 36rem;
}
.seo-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s3);
}
@media (min-width: 900px) {
  .seo-points { grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s6); }
}
.seo-points li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: var(--s3);
  align-items: start;
}
.seo-points__mark {
  width: 8px;
  height: 8px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.seo-points p {
  margin: 0;
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.55;
}
.seo-block__outro {
  margin: var(--s6) 0 0;
  padding: var(--inset);
  border-left: 3px solid var(--brand);
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-2);
  font-size: .98rem;
  line-height: 1.6;
  max-width: 48rem;
}

/* Coverage / timeline cards (about) */
.info-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gap);
}
@media (min-width: 800px) {
  .info-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-cards--coverage { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.info-cards li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s3);
  padding: var(--inset);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.info-cards__n {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.info-cards p {
  margin: var(--s2) 0 0;
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.5;
}
.info-cards .text-link { margin-top: var(--s3); }

.info-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--gap);
}
@media (min-width: 800px) {
  .info-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .info-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.info-track li {
  position: relative;
  padding: var(--inset);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  gap: var(--s3);
}
.info-track__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.info-track__body .h-md { margin: 0 0 var(--s2); }
.info-track__body p {
  margin: 0;
  color: var(--ink-2);
  font-size: .94rem;
  line-height: 1.55;
}

/* Prose */
.prose { color: var(--ink-2); }
.prose p + p { margin-top: var(--s3); }
.prose h2,
.prose h3 { color: var(--ink); margin: var(--s5) 0 var(--s3); }
.prose ul,
.prose ol {
  margin: var(--s3) 0;
  padding-left: 1.2rem;
  list-style: disc;
}
.prose li + li { margin-top: var(--s2); }
.prose a { color: var(--brand); text-decoration: underline; }
.prose a.btn {
  color: inherit;
  text-decoration: none;
}
.prose a.btn.btn--ghost { color: var(--ink); }
.prose a.btn.btn--brand { color: #fff; }

/* Footer */
.site-footer {
  background: var(--footer);
  color: var(--footer-ink);
  padding: var(--section) 0 var(--s7);
}
.site-footer a {
  color: rgba(232, 234, 237, .82);
  transition: color var(--ease);
}
.site-footer__grid {
  display: grid;
  gap: var(--stack);
}
.site-footer__brand p {
  margin-top: var(--s3);
  color: rgba(232, 234, 237, .7);
  max-width: 28rem;
}
.site-footer .meta-label { color: rgba(232, 234, 237, .5); }
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.site-footer nav a {
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
}
.site-footer__phones {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-top: var(--s4);
}
.site-footer__phones a {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
}
.site-footer .brand--footer .brand__text strong { color: #fff; }
.site-footer .brand--footer .brand__text small { color: rgba(232, 234, 237, .55); }
.site-footer__cta .btn {
  min-height: var(--tap);
  height: auto;
  margin-top: var(--s3);
}
.brand--footer .brand__mark { border-color: rgba(255,255,255,.15); }
.brand--footer .brand__text small {
  color: rgba(232, 234, 237, .55);
  max-width: none;
}
.site-footer__cta p {
  margin-bottom: var(--s4);
  color: rgba(232, 234, 237, .7);
}
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s3);
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: rgba(232, 234, 237, .5);
}
@media (min-width: 800px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr .8fr 1fr .9fr;
    gap: var(--s7);
  }
}
@media (hover: hover) and (pointer: fine) {
  .site-footer a:hover { color: #fff; }
}

/* Mobile dock */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: transform var(--ease), opacity var(--ease);
}
body.modal-open .dock,
body.nav-open .dock {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
@media (min-width: 900px) {
  .dock { display: none; }
}

/* Modal - mobile bottom sheet / desktop dialog */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
  padding: 0;
}
.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 28, .52);
  opacity: 0;
  transition: opacity .22s ease;
}
.modal.is-open .modal__scrim { opacity: 1; }
.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: min(92dvh, 720px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: var(--s3) var(--pad) calc(var(--s6) + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 40px rgba(20, 23, 28, .18);
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}
.modal.is-open .modal__panel { transform: none; }
.modal__handle {
  width: 40px;
  height: 4px;
  margin: 4px auto 16px;
  border-radius: 99px;
  background: var(--line-strong);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: var(--pad);
  width: var(--tap);
  height: var(--tap);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.modal__close .gicon { font-size: 22px; }
.modal__close svg { width: 18px; height: 18px; display: none; }
.modal__panel .h-md { padding-right: 52px; }
.modal__panel .text-lg { margin-bottom: var(--s2); max-width: none; }
.modal__service {
  margin-bottom: var(--s4);
  padding: 10px 12px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: var(--radius-sm);
  font-weight: 700;
}
@media (min-width: 640px) {
  .modal {
    place-items: center;
    padding: var(--s6);
  }
  .modal__panel {
    border-radius: var(--radius);
    padding: var(--s7);
    max-height: min(88vh, 680px);
    transform: translateY(16px) scale(.98);
    opacity: 0;
    transition: transform .24s ease, opacity .24s ease;
  }
  .modal.is-open .modal__panel {
    transform: none;
    opacity: 1;
  }
  .modal__handle { display: none; }
  .modal__close {
    top: var(--s5);
    right: var(--s5);
  }
}

/* Reveal — ховаємо лише після готовності JS (інакше PageSpeed/defer = порожні блоки) */
html.js-ready [data-anim="reveal"]:not(.is-inview) {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
html.js-ready [data-anim="reveal"].is-inview,
.no-js [data-anim="reveal"],
html:not(.js-ready) [data-anim="reveal"] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html.js-ready [data-anim="reveal"] {
    opacity: 1;
    transform: none;
  }
  .modal__panel,
  .modal__scrim,
  .nav {
    transition: none !important;
  }
}

/* Geo areas hub + location tags */
.areas-hub .geo-group { margin-top: var(--stack); }
.areas-hub .geo-group:first-of-type { margin-top: var(--s4); }
.geo-group .h-md { margin-bottom: var(--s4); }
.geo-fold {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
}
.geo-fold__sum {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  user-select: none;
}
.geo-fold__sum::-webkit-details-marker { display: none; }
.geo-fold__sum .h-md {
  margin: 0;
  font-size: 1.05rem;
}
.geo-fold__meta {
  flex-shrink: 0;
  color: var(--ink-2);
  font-size: .82rem;
  font-weight: 600;
}
.geo-fold[open] .geo-fold__sum {
  border-bottom: 1px solid var(--line);
}
.geo-fold .geo-tags {
  padding: 14px 16px 16px;
}
.geo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.geo-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .geo-tag:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft);
  }
}
.area-page .svc-list { margin-top: var(--s4); }
