.p32-header {
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 42, 64, .12);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
}

.p32-header * {
  box-sizing: border-box;
}

.p32-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.p32-middle {
  min-height: 88px;
  display: grid;
  grid-template-columns: 185px minmax(340px, .9fr) 145px 310px;
  gap: 15px;
  align-items: center;
}

.p32-logo img {
  display: block;
  width: 185px;
  height: auto;
}

.p32-service-box {
  height: 42px;
  display: grid;
  grid-template-columns: 148px minmax(0, .86fr) 104px;
  align-items: center;
  gap: 8px;
  background: transparent;
}

.p32-city {
  height: 100%;
  width: 148px;
  border: 2px solid #ef7f1a;
  border-radius: 10px;
  background: #fff5ec;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  padding: 0 3mm;
  outline-color: #ef7f1a;
}

.p32-site-search {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border: 2px solid #ef7f1a;
  border-radius: 10px;
  color: #6a6a6a;
  font-size: 11px;
  font-weight: 500;
  outline: none;
}

.p32-site-search::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.p32-search-button {
  height: 100%;
  border: 0;
  border-radius: 10px;
  background: #ef7f1a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.p32-search-button:hover {
  background: #d96c0f;
}

.p32-rating {
  transform: translateX(-18px);
}

.p32-rating iframe {
  display: block;
  width: 145px;
  height: 50px;
  border: 0;
  border-radius: 8px;
}

.p32-contacts {
  display: grid;
  gap: 6px;
  justify-items: end;
  line-height: 1.2;
  transform: translateX(-18px);
}

.p32-phone {
  color: #222;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.p32-mail {
  color: #d96c0f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.p32-mail:hover,
.p32-address:hover {
  text-decoration: underline;
}

.p32-address {
  color: #d96c0f;
  text-decoration: none;
}

.p32-worktime {
  color: #d96c0f;
  font-size: 14.5px;
  font-weight: 650;
  white-space: nowrap;
}

.p32-nav-row {
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}

.p32-nav {
  min-height: 64px;
  display: block;
  align-items: center;
}

.p32-nav-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  overflow-x: visible;
  scrollbar-width: none;
}

.p32-nav-items::-webkit-scrollbar {
  display: none;
}

.p32-links,
.p32-actions {
  display: contents;
}

.p32-links a,
.p32-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 36px;
  padding: 0 10px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 650;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease, font-weight .18s ease;
}

.p32-links a {
  color: #222;
}

.p32-links a:hover,
.p32-links a.active {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
  font-weight: 650;
  transform: none;
}

.p32-btn {
  padding: 3mm;
  border-radius: 10px;
  color: #fff;
  font-weight: 750;
  font-size: 15px;
  transition: background .18s ease, transform .18s ease;
}

.p32-btn-orange {
  background: #ef7f1a;
}

.p32-btn-orange:hover {
  background: #ff6f00;
  transform: none;
}

.p32-btn-green {
  background: #25d366;
}

.p32-btn-green:hover {
  background: #12b957;
  transform: none;
}

.p32-mobile-menu {
  display: none;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #ef7f1a;
  border-radius: 8px;
  background: #fff;
  color: #d96c0f;
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .p32-middle {
    grid-template-columns: 170px minmax(300px, 1fr) 280px;
  }

  .p32-rating {
    display: none;
  }
}

@media (max-width: 820px) {
  .p32-middle {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 13px 0;
  }

  .p32-logo img {
    width: 170px;
  }

  .p32-service-box {
    grid-template-columns: 150px 1fr;
  }

  .p32-contacts {
    justify-items: start;
    transform: none;
  }

  .p32-nav {
    min-height: auto;
    padding: 9px 0;
  }

  .p32-nav-items {
    display: block;
  }

  .p32-links {
    display: none;
  }

  .p32-mobile-menu {
    display: inline-flex;
    align-items: center;
  }

  .p32-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .p32-service-box {
    height: auto;
    grid-template-columns: 1fr;
  }

  .p32-city,
  .p32-site-search,
  .p32-search-button {
    height: 42px;
  }
}

/* Header nav wrap fix, 2026-07-22 */
@media (max-width: 1180px) and (min-width: 821px) {
  .p32-nav {
    min-height: auto;
    padding: 10px 0;
  }

  .p32-nav-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }
}

/* Header services dropdown restore, 2026-07-22 */
.p32-menu-item { position: relative; display: inline-flex; }
.p32-menu-item > a { display:inline-flex; align-items:center; justify-content:center; width:max-content; min-height:36px; padding:0 10px; border:2px solid transparent; border-radius:8px; color:#222; text-decoration:none; font-size:15px; line-height:1.1; font-weight:650; white-space:nowrap; transition:background .18s ease,color .18s ease,border-color .18s ease; }
.p32-menu-item:hover > a, .p32-menu-item > a.active { color:#d96c0f; background:#fff7ed; border-color:#ef7f1a; }
.p32-dropdown { position:absolute; left:0; top:100%; z-index:1000; display:grid; grid-template-columns:repeat(3,minmax(210px,1fr)); gap:24px; width:min(980px, calc(100vw - 40px)); padding:22px; border:1px solid #e6e6e6; border-radius:12px; background:#fff; box-shadow:0 18px 48px rgba(18,42,64,.16); opacity:0; visibility:hidden; transform:translateY(0); pointer-events:none; transition:opacity .18s ease, transform .18s ease, visibility .18s ease; }
.p32-has-dropdown:hover .p32-dropdown, .p32-has-dropdown:focus-within .p32-dropdown { opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; }
.p32-dropdown-col { display:grid; gap:8px; }
.p32-dropdown-col p { margin:0 0 4px; color:#d96c0f; font-size:15px; line-height:1.2; font-weight:750; }
.p32-dropdown-col a { display:block; min-height:auto; padding:6px 0; border:0; border-radius:0; color:#222; background:transparent; font-size:14px; line-height:1.25; font-weight:500; text-align:left; text-decoration:none; white-space:normal; }
.p32-dropdown-col a:hover { color:#d96c0f; background:transparent; text-decoration:underline; }
@media (max-width:820px){ .p32-menu-item{display:none;} .p32-dropdown{display:none;} }

/* Header nav one-line fit, 2026-07-22 */
@media (min-width: 1181px) {
  .p32-nav-items {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(6px, .7vw, 12px);
  }

  .p32-links a,
  .p32-menu-item > a {
    padding-left: clamp(6px, .55vw, 10px);
    padding-right: clamp(6px, .55vw, 10px);
    font-size: clamp(13.5px, .78vw, 15px);
  }

  .p32-btn {
    padding-left: clamp(7px, .65vw, 11px);
    padding-right: clamp(7px, .65vw, 11px);
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: clamp(13.5px, .78vw, 15px);
  }
}

@media (max-width: 1180px) and (min-width: 821px) {
  .p32-nav-items {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 6px;
  }

  .p32-links a,
  .p32-menu-item > a {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
  }

  .p32-btn {
    padding: 8px 7px;
    font-size: 13px;
  }
}

/* Mobile search submit hide + consultation modal fix, 2026-07-22 */
@media (max-width: 820px) {
  .p32-service-box {
    grid-template-columns: 150px 1fr;
  }

  .p32-search-button {
    display: none;
  }
}

/* Header search removed, 2026-07-22 */
.p32-service-box {
  grid-template-columns: 148px;
  justify-content: start;
}

/* Header mobile menu panel, 2026-07-22 */
.p32-mobile-panel {
  display: none;
}

@media (max-width: 820px) {
  .p32-nav {
    position: relative;
  }

  .p32-mobile-menu {
    cursor: pointer;
  }

  .p32-mobile-panel {
    display: none;
    margin-top: 10px;
    padding: 16px;
    border: 1px solid #ef7f1a;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(18,42,64,.14);
  }

  .p32-mobile-panel.is-open {
    display: block;
  }

  .p32-mobile-panel-grid {
    display: grid;
    gap: 14px;
  }

  .p32-mobile-panel-col {
    display: grid;
    gap: 8px;
  }

  .p32-mobile-panel-col p {
    margin: 0 0 2px;
    color: #d96c0f;
    font-size: 15px;
    font-weight: 800;
  }

  .p32-mobile-panel-col a,
  .p32-mobile-panel-col span {
    color: #222;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 550;
    text-decoration: none;
  }

  .p32-mobile-panel-col a:hover {
    color: #d96c0f;
  }

  .p32-mobile-panel-contact a,
  .p32-mobile-panel-contact span {
    color: #d96c0f;
    font-weight: 650;
  }

  .p32-mobile-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .p32-mobile-panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
  }

  .p32-mobile-panel-btn-orange {
    background: #ef7f1a;
  }

  .p32-mobile-panel-btn-green {
    background: #25d366;
  }
}

/* Dropdown hover bridge, 2026-07-22 */
.p32-has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: min(980px, calc(100vw - 40px));
  height: 14px;
  display: block;
}

/* Dropdown JS hover support, 2026-07-22 */
.p32-has-dropdown.is-open .p32-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.p32-has-dropdown.is-open > a {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
}

/* Compact services dropdown text, 2026-07-22 */
.p32-dropdown {
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.p32-dropdown-col {
  gap: 5px;
}

.p32-dropdown-col p {
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.15;
}

.p32-dropdown-col a {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 13px;
  line-height: 1.12;
}

/* Equal compact gap for all services dropdown columns, 2026-07-22 */
.p32-dropdown .p32-dropdown-col,
.p32-dropdown .p32-dropdown-col:nth-child(2),
.p32-dropdown .p32-dropdown-col:nth-child(3) {
  row-gap: 5px;
  gap: 5px;
  align-content: start;
}

.p32-dropdown .p32-dropdown-col:nth-child(2) a,
.p32-dropdown .p32-dropdown-col:nth-child(3) a {
  padding-top: 3px;
  padding-bottom: 3px;
  line-height: 1.12;
}

/* Mobile header horizontal centering, 2026-07-22 */
@media (max-width: 820px) {
  .p32-middle {
    justify-items: center;
    text-align: center;
  }

  .p32-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .p32-logo img {
    margin-left: auto;
    margin-right: auto;
  }

  .p32-service-box {
    width: 100%;
    grid-template-columns: 148px;
    justify-content: center;
    justify-items: center;
  }

  .p32-city {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .p32-contacts {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .p32-worktime {
    white-space: normal;
    text-align: center;
  }

  .p32-nav {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .p32-mobile-menu {
    justify-content: center;
    text-align: center;
  }

  .p32-nav-items {
    width: 100%;
  }

  .p32-actions {
    justify-content: center;
    text-align: center;
  }
}

/* Mobile logo bigger, 2026-07-22 */
@media (max-width: 820px) {
  .p32-logo img {
    width: 205px;
    max-width: 82vw;
  }
}

/* Mobile worktime/address split lines, 2026-07-22 */
@media (max-width: 820px) {
  .p32-worktime {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .p32-worktime .p32-mobile-dot {
    display: none;
  }

  .p32-address {
    display: block;
  }
}

/* Mobile header vertical tighten, 2026-07-22 */
@media (max-width: 820px) {
  .p32-middle {
    gap: 8px;
    padding-bottom: 6px;
  }

  .p32-contacts {
    gap: 3px;
  }

  .p32-nav {
    padding-top: 0;
    padding-bottom: 6px;
  }

  .p32-nav-row {
    margin-top: -2px;
  }

  .p32-actions {
    margin-top: 6px;
  }
}

/* Mobile buttons even vertical gap, 2026-07-22 */
@media (max-width: 820px) {
  .p32-nav {
    padding-bottom: 4px;
  }

  .p32-mobile-menu {
    margin-bottom: 6px;
  }

  .p32-actions {
    display: grid;
    justify-items: center;
    gap: 6px;
    margin-top: 0;
  }

  .p32-btn {
    min-height: 40px;
  }
}

/* Mobile logo bigger 2, 2026-07-22 */
@media (max-width: 820px) {
  .p32-logo img {
    width: 225px;
    max-width: 86vw;
  }
}

/* Mobile menu button border like city select, 2026-07-22 */
@media (max-width: 820px) {
  .p32-mobile-menu {
    border-width: 2px;
    border-color: #ef7f1a;
  }
}

/* Mobile popular services grouped list, 2026-07-22 */
@media (max-width: 820px) {
  .p32-mobile-panel-popular {
    grid-template-columns: 1fr;
  }

  .p32-mobile-panel-subtitle {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f2d1b6;
    color: #d96c0f;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: none;
  }

  .p32-mobile-panel-popular a {
    padding: 2px 0;
    font-size: 13.5px;
    line-height: 1.18;
  }
}

/* Single image header text outline, 2026-07-22 */
.single-header .breadcrumbs,
.single-header .breadcrumbs a,
.single-header .breadcrumbs span,
.single-header h1 {
  text-shadow:
    0 1px 2px rgba(0,0,0,.72),
    0 0 1px rgba(0,0,0,.85);
  -webkit-text-stroke: .25px rgba(0,0,0,.35);
}

.single-header .breadcrumbs a:hover {
  text-shadow:
    0 1px 2px rgba(0,0,0,.78),
    0 0 1px rgba(0,0,0,.9);
}

/* Single image header text outline stronger, 2026-07-22 */
.single-header .breadcrumbs,
.single-header .breadcrumbs a,
.single-header .breadcrumbs span,
.single-header h1 {
  text-shadow:
    0 2px 3px rgba(0,0,0,.86),
    0 0 2px rgba(0,0,0,.92),
    1px 1px 0 rgba(0,0,0,.52),
    -1px 1px 0 rgba(0,0,0,.52),
    1px -1px 0 rgba(0,0,0,.42),
    -1px -1px 0 rgba(0,0,0,.42);
}

.single-header .breadcrumbs a:hover {
  text-shadow:
    0 2px 3px rgba(0,0,0,.9),
    0 0 2px rgba(0,0,0,.95),
    1px 1px 0 rgba(0,0,0,.58),
    -1px 1px 0 rgba(0,0,0,.58),
    1px -1px 0 rgba(0,0,0,.48),
    -1px -1px 0 rgba(0,0,0,.48);
}

/* Header rating centered between city and contacts, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(25px);
  }
}

/* Header rating centered to address start, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(57px);
  }
}

/* Contacts page compact info blocks, 2026-07-22 */
.contacts__main {
  display: grid;
  row-gap: 14px;
}

.contacts__main .contacts__item {
  margin-bottom: 0;
}

.contacts__main .contacts__item-title {
  display: block;
  margin-bottom: 4px;
  line-height: 1.15;
}

.contacts__main .contacts__item-text,
.contacts__main .contacts__item-link {
  line-height: 1.28;
}

.contacts__main .contacts__item-link {
  display: inline-block;
  margin-top: 3px;
}

@media (max-width: 820px) {
  .contacts__main {
    row-gap: 10px;
  }
}

/* Header rating shifted slightly left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(39px);
  }
}

/* Contacts page extra phones compact, 2026-07-22 */
.contacts__main .contacts__item:has(.contacts__item-title) .contacts__phones,
.contacts__main .contacts__phones {
  font-size: 14px;
  line-height: 1.22;
}
.contacts__main .contacts__phones p,
.contacts__main .contacts__phones div {
  margin-top: 2px;
  margin-bottom: 2px;
}
.contacts__main .contacts__phones b,
.contacts__main .contacts__phones strong {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 1px;
  font-size: 13px;
  line-height: 1.15;
}
@media (max-width: 820px) {
  .contacts__main .contacts__phones {
    font-size: 13px;
    line-height: 1.18;
  }
}

/* Contacts page managers phones compact, 2026-07-22 */
.contacts__tels {
  margin-top: 18px;
}
.contacts__tels h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}
.contacts__tels .grid__contacts1 {
  gap: 10px 16px;
}
.contacts__manager {
  padding: 8px 10px;
}
.contacts__manager-name {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  line-height: 1.15;
}
.contacts__manager-tel {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.18;
}
@media (max-width: 820px) {
  .contacts__tels {
    margin-top: 12px;
  }
  .contacts__tels h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .contacts__manager {
    padding: 6px 8px;
  }
  .contacts__manager-name {
    font-size: 12px;
  }
  .contacts__manager-tel {
    font-size: 13px;
    line-height: 1.15;
  }
}

/* Header rating shifted more left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(22px);
  }
}

/* Header rating shifted even more left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(4px);
  }
}

/* Header rating shifted 2cm left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(-72px);
  }
}

/* Header rating shifted 4cm left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(-148px);
  }
}

/* Header rating shifted far left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(-205px);
  }
}

/* Header rating shifted farther left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(-250px);
  }
}

/* Header nav light-red hover/press only, 2026-07-22 */
.p32-links a:hover,
.p32-links a:active,
.p32-menu-item:hover > a,
.p32-menu-item > a:active {
  color: #c7352b;
  background: #fff1f0;
  border-color: #f2b8b2;
}
.p32-links a.active:not(:hover):not(:active),
.p32-menu-item > a.active:not(:hover):not(:active) {
  color: #222;
  background: transparent;
  border-color: transparent;
}
.p32-dropdown-col a:hover,
.p32-dropdown-col a:active,
.p32-mobile-panel-col a:hover,
.p32-mobile-panel-col a:active {
  color: #c7352b;
  background: #fff1f0;
  border-radius: 6px;
  text-decoration: none;
}

/* Contacts managers compact rectangular shadows, 2026-07-22 */
.contacts__manager {
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(18, 42, 64, .10);
}

/* Header nav selected section glow, 2026-07-22 */
.p32-links a.active,
.p32-links a:focus,
.p32-links a:active,
.p32-menu-item > a.active,
.p32-menu-item > a:focus,
.p32-menu-item > a:active {
  color: #c7352b;
  background: #fff1f0;
  border-color: #f2b8b2;
  box-shadow: 0 0 0 3px rgba(199, 53, 43, .10);
}

/* Contacts managers cards smaller, 2026-07-22 */
.contacts__tels .grid__contacts1 {
  gap: 6px 10px;
}
.contacts__manager {
  padding: 5px 8px;
  min-height: 0;
}
.contacts__manager-name {
  margin-bottom: 1px;
}
.contacts__manager-tel {
  margin-top: 1px;
}
@media (max-width: 820px) {
  .contacts__tels .grid__contacts1 {
    gap: 5px 8px;
  }
  .contacts__manager {
    padding: 4px 7px;
  }
}

/* Header nav old hover/active style restored, 2026-07-22 */
.p32-links a:hover,
.p32-links a:focus,
.p32-links a:active,
.p32-links a.active,
.p32-menu-item:hover > a,
.p32-menu-item > a:focus,
.p32-menu-item > a:active,
.p32-menu-item > a.active {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
  box-shadow: none;
}

/* Header current section visible state, 2026-07-22 */
.p32-links a.active,
.p32-menu-item > a.active {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
  box-shadow: 0 3px 10px rgba(239, 127, 26, .18);
}

/* Header nav active exactly like hover, 2026-07-22 */
.p32-links a:hover,
.p32-links a:focus,
.p32-links a:active,
.p32-links a.active,
.p32-menu-item:hover > a,
.p32-menu-item > a:focus,
.p32-menu-item > a:active,
.p32-menu-item > a.active {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
  box-shadow: 0 4px 12px rgba(239, 127, 26, .20);
}

/* Header nav active clean old style, 2026-07-22 */
.p32-links a:hover,
.p32-links a:focus,
.p32-links a:active,
.p32-links a.active,
.p32-menu-item:hover > a,
.p32-menu-item > a:focus,
.p32-menu-item > a:active,
.p32-menu-item > a.active {
  color: #d96c0f !important;
  background: #fff7ed !important;
  border-color: #ef7f1a !important;
  box-shadow: none !important;
}

/* Contacts managers clean compact list, 2026-07-22 */
.contacts__tels {
  margin-top: 16px;
}
.contacts__tels h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}
.contacts__tels .grid__contacts1 {
  display: block;
}
.contacts__managers {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 0 18px;
  max-width: 760px;
}
.contacts__manager {
  display: grid;
  grid-template-columns: 86px 1fr 1fr;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(239, 127, 26, .18);
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
}
.contacts__manager-name {
  margin: 0;
  color: #d96c0f;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 700;
}
.contacts__manager-tel {
  margin: 0;
  color: #222;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  white-space: nowrap;
}
.contacts__manager-tel:hover {
  color: #d96c0f;
}
@media (max-width: 820px) {
  .contacts__tels {
    margin-top: 12px;
  }
  .contacts__tels h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .contacts__managers {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .contacts__manager {
    grid-template-columns: 76px 1fr;
    gap: 4px 8px;
    padding: 6px 0;
  }
  .contacts__manager-tel {
    font-size: 13px;
  }
  .contacts__manager-tel + .contacts__manager-tel {
    grid-column: 2;
  }
}

/* Contacts phones vertical clean list, 2026-07-22 */
.contacts__tels {
  margin-top: 16px;
}
.contacts__tels h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}
.contacts__phone-list {
  display: grid;
  gap: 6px;
  max-width: 430px;
}
.contacts__phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(239, 127, 26, .18);
  border-radius: 8px;
  background: #fffaf4;
  box-shadow: 0 3px 10px rgba(18, 42, 64, .06);
}
.contacts__phone-row a {
  color: #222;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
}
.contacts__phone-row a:hover {
  color: #d96c0f;
}
@media (max-width: 820px) {
  .contacts__tels {
    margin-top: 12px;
  }
  .contacts__tels h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .contacts__phone-list {
    max-width: none;
    gap: 5px;
  }
  .contacts__phone-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 7px 10px;
  }
  .contacts__phone-row a {
    font-size: 13px;
  }
}

/* Contacts phones moved under e-mail, 2026-07-22 */
.contacts__main .contacts__tels {
  margin-top: 2px;
}
.contacts__main .contacts__tels h2 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.2;
}
.contacts__main .contacts__phone-list {
  max-width: 470px;
}
.contacts__main .contacts__phone-row {
  padding: 7px 10px;
}
@media (max-width: 820px) {
  .contacts__main .contacts__tels h2 {
    font-size: 16px;
  }
}

/* Contacts phones restored below filials, 2026-07-22 */
.contacts__tels:not(.contacts__main .contacts__tels) {
  margin-top: 16px;
}
.contacts__tels:not(.contacts__main .contacts__tels) h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

/* Contacts extra phones under main phone, 2026-07-22 */
.contacts__phone-list--inline {
  margin-top: 8px;
  max-width: 430px;
}
.contacts__phone-list--inline .contacts__phone-row {
  padding: 6px 10px;
}
@media (max-width: 820px) {
  .contacts__phone-list--inline {
    margin-top: 6px;
  }
}

/* Contacts inline phones always two numbers in one row, 2026-07-22 */
.contacts__phone-list--inline .contacts__phone-row {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.contacts__phone-list--inline .contacts__phone-row a {
  font-size: 13px;
}
@media (max-width: 820px) {
  .contacts__phone-list--inline .contacts__phone-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .contacts__phone-list--inline .contacts__phone-row a {
    font-size: 12px;
  }
}

/* Contacts extra phones plain like main number, 2026-07-22 */
.contacts__extra-phones {
  display: block;
  margin-top: 5px;
}
.contacts__extra-phone-line {
  display: block;
  margin-top: 2px;
  line-height: 1.28;
}
.contacts__extra-phone-line a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.contacts__extra-phone-line a:hover {
  color: #d96c0f;
}

/* Contacts city extra phones bold like main phone, 2026-07-22 */
.contacts__extra-phone-line a:first-child {
  font-weight: 700;
}

/* Payment delivery page: cost block removed, 2026-07-22 */
@media (min-width: 768px) {
  .grid__delivery.mb-94 .right__wrap {
    display: flex;
    align-items: stretch;
    padding-top: 24px;
  }
  .grid__delivery.mb-94 .right__wrap > .right__side {
    width: 100%;
    min-height: 0;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .grid__delivery.mb-94 .right__wrap {
    padding-top: 0;
  }
}

/* Payment page compact consultation and aligned delivery terms, 2026-07-22 */
@media (min-width: 768px) {
  .grid__delivery.mb-94 {
    align-items: stretch;
  }
  .grid__delivery.mb-94 .left__form {
    padding-top: 28px;
    padding-bottom: 26px;
    min-height: 0;
  }
  .grid__delivery.mb-94 .form__title {
    margin-bottom: 10px;
    line-height: 1.12;
  }
  .grid__delivery.mb-94 .form__subtitle {
    margin-bottom: 18px;
    line-height: 1.22;
  }
  .grid__delivery.mb-94 .left__form .wpcf7-form-control {
    height: 48px;
    margin-bottom: 14px;
  }
  .grid__delivery.mb-94 .left__form textarea.wpcf7-form-control,
  .grid__delivery.mb-94 .left__form textarea {
    height: 112px !important;
    min-height: 112px;
    margin-bottom: 14px;
  }
  .grid__delivery.mb-94 .left__form [type="submit"] {
    height: 48px;
  }
  .grid__delivery.mb-94 .agreement {
    margin-top: 8px;
    line-height: 1.18;
  }
  .grid__delivery.mb-94 .right__wrap {
    padding-top: 24px;
  }
  .grid__delivery.mb-94 .right__wrap > .right__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 318px;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .grid__delivery.mb-94 .right__wrap > .right__side .deliver__title--big {
    margin-bottom: 14px;
  }
  .grid__delivery.mb-94 .right__wrap > .right__side .del__text--bg {
    margin-bottom: 0;
    line-height: 1.35;
  }
}
@media (max-width: 767.98px) {
  .grid__delivery.mb-94 .left__form {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .grid__delivery.mb-94 .form__title {
    margin-bottom: 10px;
  }
  .grid__delivery.mb-94 .form__subtitle {
    margin-bottom: 16px;
  }
}

/* Payment page consultation block extra compact, 2026-07-22 */
@media (min-width: 768px) {
  .grid__delivery.mb-94 .left__form {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .grid__delivery.mb-94 .form__title {
    margin-bottom: 7px;
    line-height: 1.08;
  }
  .grid__delivery.mb-94 .form__subtitle {
    margin-bottom: 12px;
    line-height: 1.16;
  }
  .grid__delivery.mb-94 .left__form .wpcf7-form-control {
    height: 43px;
    margin-bottom: 10px;
  }
  .grid__delivery.mb-94 .left__form textarea.wpcf7-form-control,
  .grid__delivery.mb-94 .left__form textarea {
    height: 88px !important;
    min-height: 88px;
    margin-bottom: 10px;
  }
  .grid__delivery.mb-94 .left__form [type="submit"] {
    height: 44px;
  }
  .grid__delivery.mb-94 .agreement {
    margin-top: 5px;
    line-height: 1.12;
  }
}
@media (max-width: 767.98px) {
  .grid__delivery.mb-94 .left__form {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .grid__delivery.mb-94 .form__subtitle {
    margin-bottom: 12px;
  }
}

/* Header Yandex rating height like city select, 2026-07-23 */
@media (min-width: 768px) {
  .p32-rating {
    height: 42px;
    display: flex;
    align-items: center;
  }
  .p32-rating iframe {
    height: 42px;
  }
}

/* Services page consultation image height crop, 2026-07-23 */
@media (min-width: 1281px) {
  .p32-services-page .section-contact-us {
    padding-top: 190px;
    padding-bottom: 190px;
    background-size: cover;
    background-position: center center;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .p32-services-page .section-contact-us {
    padding-top: 125px;
    padding-bottom: 125px;
    background-size: cover;
    background-position: center center;
  }
}

/* Contacts footer polygraphy title centered over two columns, 2026-07-23 */
@media (min-width: 768px) {
  body.p32-contacts-page footer .footer-bottom .footer-col:first-child .footer-col-title {
    text-align: center;
    width: 100%;
  }
}

