:root {
  --sto-red: #dc2626;
  --sto-red-dark: #b91c1c;
  --sto-ink: #111827;
  --sto-text: #4b5563;
  --sto-muted: #f7f8fa;
  --sto-line: #e5e7eb;
  --sto-white: #ffffff;
  --sto-radius: 16px;
  --sto-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

[hidden] {
  display: none !important;
}

html.sto-scroll-lock,
body.sto-scroll-lock {
  overflow: hidden;
  overscroll-behavior: none;
}

.sto-turnstile {
  display: block;
  width: 100%;
  min-height: 65px;
  overflow: hidden;
}

.sto-turnstile > div,
.sto-turnstile iframe {
  width: 100% !important;
  max-width: none !important;
}

body.sto-scroll-lock {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
}

.sto-shell {
  width: min(100% - 32px, 1336px);
  margin-inline: auto;
}

.sto-header .sto-shell {
  width: min(100%, 1400px);
  padding-inline: 16px;
}

.sto-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.admin-bar .sto-header {
  top: 32px;
}

.admin-bar .sto-search-panel {
  top: 32px;
}

.sto-header__row {
  display: flex;
  height: 76px;
  align-items: center;
  gap: 12px;
}

.sto-logo {
  display: flex;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
}

.sto-logo img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.sto-site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.sto-site-nav > a,
.sto-nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  color: #374151;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s, background-color 0.15s;
}

.sto-site-nav > a:hover,
.sto-nav-dropdown > button:hover {
  color: #dc2626;
  background: #f9fafb;
}

.sto-nav-dropdown > button.is-active {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.05);
}

.sto-nav-dropdown > button svg,
.sto-phone-button svg:last-child {
  transition: transform 0.2s;
}

.sto-nav-dropdown > button.is-active svg,
.sto-phone-button.is-active svg:last-child {
  transform: rotate(180deg);
}

.sto-nav-dropdown,
.sto-phone-dropdown {
  position: relative;
}

.sto-services-menu,
.sto-brands-menu,
.sto-contact-card {
  position: absolute;
  z-index: 120;
  top: calc(100% + 8px);
  left: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
}

.sto-brands-menu,
.sto-contact-card {
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.sto-services-menu > ul,
.sto-services-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sto-services-menu > ul {
  width: 208px;
}

.sto-services-menu > ul > li {
  position: relative;
}

.sto-service-category {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border: 0;
  color: #374151;
  background: transparent;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  cursor: default;
}

.sto-services-menu > ul > li:hover > .sto-service-category {
  color: #dc2626;
  background: #f9fafb;
}

.sto-services-menu > ul > li > ul {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 256px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
}

.sto-services-menu > ul > li:nth-last-child(-n+5) > ul {
  top: auto;
  bottom: 0;
}

.sto-services-menu > ul > li:hover > ul {
  display: block;
}

.sto-services-menu li li a {
  display: block;
  padding: 10px 16px;
  color: #374151;
  font-size: 16px;
  line-height: 24px;
}

.sto-services-menu li li a:hover {
  color: #dc2626;
  background: #f9fafb;
}

.sto-brands-menu {
  display: grid;
  width: 560px;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 24px;
  padding: 20px;
}

.sto-brands-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #374151;
  font-size: 16px;
  line-height: 24px;
}

.sto-brands-menu a:hover {
  color: #dc2626;
}

.sto-brands-menu i,
.sto-footer li i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #dc2626;
}

.sto-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.sto-icon-button,
.sto-language {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #6b7280;
  background: #f3f4f6;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}

.sto-icon-button:hover,
.sto-language:hover {
  color: #4b5563;
  background: #e5e7eb;
}

.sto-phone-button span,
.sto-phone-button svg:last-child {
  display: none;
}

.sto-phone-button span {
  color: #1f2937;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.sto-phone-button svg:last-child {
  color: #9ca3af;
}

.sto-language {
  width: auto;
  padding-inline: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.sto-mobile-toggle {
  display: none;
}

.sto-site-nav .sto-mobile-title,
.sto-site-nav > .sto-mobile-contacts {
  display: none;
}

.sto-contact-card {
  right: 0;
  left: auto;
  top: calc(100% + 8px);
  width: 300px;
  padding: 20px;
}

.sto-contact-card small,
.sto-mobile-contacts small,
.sto-footer-contacts small {
  display: block;
  margin: 14px 0 6px;
  color: #9ca3af;
  font-size: 12px;
}

.sto-contact-card > a,
.sto-mobile-contacts > a,
.sto-footer-contacts > a {
  display: block;
  color: #111827;
  font-size: 16px;
  line-height: 1.75;
}

.sto-contact-card p,
.sto-mobile-contacts p {
  margin: 0;
  color: #374151;
  line-height: 1.7;
}

.sto-contact-card p span,
.sto-mobile-contacts p span,
.sto-footer-contacts p span {
  color: #9ca3af;
}

.sto-contact-card hr,
.sto-mobile-contacts hr {
  margin: 14px 0 0;
  border: 0;
  border-top: 1px solid #f3f4f6;
}

.sto-messenger-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.sto-messenger-row a {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.sto-messenger-row a svg {
  flex: 0 0 auto;
}

.sto-messenger-row .sto-brand-icon {
  color: #fff;
}

.sto-messenger-row a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sto-messenger-row .viber { background: #7360f2; }
.sto-messenger-row .telegram { background: #29b6f6; }
.sto-messenger-row .is-disabled {
  cursor: default;
}

.sto-header-socials {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.sto-header-socials a {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.sto-header-socials a svg {
  flex: 0 0 auto;
}

.sto-header-socials a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sto-header-socials .instagram { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 48%, #8134af 100%); }
.sto-header-socials .tiktok { background: #111827; }

.sto-booking-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 12px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #dc2626;
  font-weight: 700;
  cursor: pointer;
}

.sto-route-link {
  display: inline-flex !important;
  width: auto;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 8px;
  color: #dc2626 !important;
  font-size: 13px !important;
}

.site-main {
  padding-top: 76px;
}

.sto-search-panel {
  position: fixed;
  z-index: 300;
  inset: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: #fff;
}

.sto-panel-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  padding: 0;
  border: 0;
  color: #9ca3af;
  background: none;
  cursor: pointer;
}

.sto-search-panel__inner {
  width: min(100% - 40px, 672px);
  margin: 8vh auto 0;
}

.sto-search-panel__inner > p,
.sto-search-results__label {
  margin: 0 0 16px;
  color: #9ca3af;
  font-size: 14px;
}

.sto-search-field {
  position: relative;
  display: block;
}

.sto-search-field svg {
  position: absolute;
  top: 50%;
  left: 20px;
  color: #9ca3af;
  transform: translateY(-50%);
}

.sto-search-field input {
  width: 100%;
  padding: 16px 20px 16px 56px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  color: #111827;
  background: #f9fafb;
  font-size: 18px;
}

.sto-search-field input:focus {
  border-color: #dc2626;
}

.sto-search-results {
  margin-top: 24px;
}

.sto-search-results a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #4b5563;
}

.sto-search-results a:hover {
  color: #dc2626;
  background: #f9fafb;
}

.sto-search-empty {
  margin: 0;
  padding: 12px 16px;
  color: #9ca3af;
  font-size: 14px;
}

.sto-search-results a svg {
  flex: 0 0 auto;
  color: #d1d5db;
}

.sto-search-result__text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.sto-search-result__text strong {
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sto-search-result__text small {
  overflow: hidden;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sto-search-result__text mark {
  border-radius: 4px;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.12);
}

.sto-mobile-title {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
}

.sto-mobile-title button {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #6b7280;
  background: #f3f4f6;
}

.sto-mobile-contacts {
  padding: 6px 20px 30px;
}

.sto-booking-modal {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.sto-booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.sto-booking-dialog {
  position: relative;
  width: min(100%, 448px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.sto-booking-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.sto-booking-heading h2 {
  margin: 0;
  font-size: 18px;
}

.sto-booking-heading p,
.sto-booking-form > small {
  margin: 4px 0 0;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.35;
}

.sto-booking-heading button {
  padding: 0;
  border: 0;
  color: #9ca3af;
  background: none;
}

.sto-booking-form {
  display: grid;
  box-sizing: border-box;
  gap: 16px;
}

.sto-booking-form * {
  box-sizing: border-box;
}

.sto-booking-form > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sto-booking-form label {
  min-width: 0;
  color: #9ca3af;
  font-size: 12px;
}

.sto-booking-form input,
.sto-booking-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  color: #111827;
  background: #f9fafb;
  font-size: 14px;
}

.sto-booking-form label input {
  margin-top: 6px;
}

.sto-booking-form input:focus,
.sto-booking-form textarea:focus {
  border-color: #dc2626;
}

.sto-booking-form > button {
  padding: 14px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #dc2626;
  font-weight: 700;
}

.sto-booking-form > small {
  margin: 0;
  text-align: center;
}

.sto-booking-form > small a {
  color: #dc2626;
  font-weight: 700;
}

.sto-floating-actions {
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: 20px;
  left: 16px;
  display: none;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: 0.3s;
}

.sto-floating-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sto-floating-actions a,
.sto-floating-actions button {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dc2626;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.sto-floating-actions a {
  color: #1f2937;
  background: #fff;
}

.sto-floating-actions a svg {
  color: #dc2626;
}

.sto-floating-actions button {
  color: #fff;
  background: #dc2626;
}

.sto-footer {
  color: #9ca3af;
  background: #111827;
}

.sto-footer-cta {
  padding: 32px 0;
  color: #fff;
  background: #dc2626;
}

.sto-footer-cta .sto-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sto-footer-cta strong {
  font-size: 20px;
}

.sto-footer-cta p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.sto-footer-cta button {
  flex: 0 0 auto;
  padding: 12px 32px;
  border: 0;
  border-radius: 12px;
  color: #dc2626;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.sto-footer-cta button:hover {
  color: #b91c1c;
  background: #fff7f7;
  box-shadow: 0 12px 24px rgba(127, 29, 29, 0.18);
  transform: translateY(-1px);
}

.sto-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding-block: 56px;
}

.sto-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sto-footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.sto-footer-brand span {
  display: flex;
  flex-direction: column;
}

.sto-footer-brand strong {
  color: #fff;
}

.sto-footer-brand em {
  color: #dc2626;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.sto-footer-about > p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.75;
}

.sto-footer h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: #fff;
  font-size: 14px;
}

.sto-footer h2 > i {
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: #dc2626;
}

.sto-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sto-footer li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 14px;
}

.sto-footer li a:hover,
.sto-footer-contacts a:hover {
  color: #fff;
}

.sto-footer-contacts > a,
.sto-footer-contacts > p {
  color: #d1d5db;
  font-size: 14px;
}

.sto-footer-contacts > p {
  margin: 0;
  line-height: 1.7;
}

.sto-socials {
  display: flex;
  gap: 12px;
}

.sto-socials a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.sto-footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sto-footer-bottom .sto-shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #6b7280;
  font-size: 12px;
}

@media (min-width: 1280px) {
  .sto-phone-button {
    width: auto;
    padding-inline: 12px;
  }

  .sto-phone-button span,
  .sto-phone-button svg:last-child {
    display: block;
  }
}

@media (max-width: 1023px) {
  .sto-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .admin-bar .sto-header {
    top: 0;
  }

  .site-main {
    padding-top: 0;
  }

  .sto-site-nav {
    position: fixed;
    z-index: 90;
    inset: 76px 0 0;
    display: none;
    overflow-y: auto;
    margin: 0;
    background: #fff;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sto-site-nav.is-mobile-open {
    display: block;
    border-top: 1px solid #e5e7eb;
    box-shadow: inset 0 10px 14px -16px rgba(15, 23, 42, 0.45);
  }

  .sto-site-nav > a,
  .sto-site-nav > .sto-nav-dropdown > button {
    width: calc(100% - 40px);
    min-height: 64px;
    justify-content: space-between;
    margin-inline: 20px;
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
  }

  .sto-site-nav > .sto-nav-dropdown {
    position: static;
  }

  .sto-site-nav > .sto-nav-dropdown > button svg {
    display: none;
  }

  .sto-site-nav > a::after,
  .sto-site-nav > .sto-nav-dropdown > button::after {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-left: auto;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .sto-site-nav > .sto-mobile-contacts {
    display: block;
  }

  .sto-site-nav:not([data-mobile-view="main"]) > a,
  .sto-site-nav:not([data-mobile-view="main"]) > .sto-mobile-contacts,
  .sto-site-nav:not([data-mobile-view="main"]) > .sto-nav-dropdown:not(.is-mobile-active) {
    display: none;
  }

  .sto-site-nav > .sto-nav-dropdown.is-mobile-active > button {
    display: none;
  }

  .sto-services-menu,
  .sto-brands-menu {
    position: static;
    width: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .sto-site-nav .sto-mobile-title {
    display: flex;
  }

  .sto-site-nav:not([data-mobile-view="main"]) .sto-mobile-title {
    border-top: 1px solid #e5e7eb;
    box-shadow: inset 0 10px 14px -16px rgba(15, 23, 42, 0.45);
  }

  .sto-services-menu > ul {
    width: auto;
    margin-inline: 20px;
  }

  .sto-service-category,
  .sto-brands-menu > a,
  .sto-services-menu li li a {
    display: flex;
    width: 100%;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 16px;
  }

  .sto-service-category {
    cursor: pointer;
    font-weight: 600;
  }

  .sto-services-menu > ul > li:hover > .sto-service-category,
  .sto-services-menu li li a:hover,
  .sto-brands-menu a:hover {
    color: #374151;
    background: transparent;
  }

  .sto-services-menu > ul > li > ul {
    position: static;
    display: none !important;
    width: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .sto-site-nav[data-mobile-view^="category-"] .sto-services-menu > .sto-mobile-title,
  .sto-site-nav[data-mobile-view^="category-"] .sto-services-menu > ul > li:not(.is-mobile-category-active),
  .sto-site-nav[data-mobile-view^="category-"] .is-mobile-category-active > .sto-service-category {
    display: none;
  }

  .sto-site-nav[data-mobile-view^="category-"] .is-mobile-category-active > ul {
    display: block !important;
  }

  .sto-services-menu li li a,
  .sto-brands-menu > a {
    justify-content: flex-start;
    font-weight: 400;
  }

  .sto-services-menu li li a::before {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #dc2626;
    content: "";
  }

  .sto-services-menu li.sto-mobile-title::before {
    display: none;
  }

  .sto-services-menu li.sto-mobile-title {
    margin-inline: -20px;
  }

  .sto-brands-menu {
    display: block;
    padding: 0;
  }

  .sto-brands-menu > a {
    width: calc(100% - 40px);
    margin-inline: 20px;
  }

  .sto-mobile-toggle {
    display: flex;
  }

  .sto-floating-actions {
    display: flex;
  }

  .sto-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .admin-bar .sto-phone-dropdown .sto-contact-card,
  .sto-phone-dropdown .sto-contact-card {
    position: fixed;
    z-index: 95;
    inset: 76px 0 0;
    width: auto;
    overflow-y: auto;
    padding: 6px 20px 30px;
    border: 0;
    border-top: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: inset 0 10px 14px -16px rgba(15, 23, 42, 0.45);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sto-phone-dropdown .sto-contact-card::-webkit-scrollbar {
    display: none;
  }

  .sto-search-panel__inner {
    margin-top: 56px;
  }

  .sto-messenger-row a,
  .sto-header-socials a {
    padding-inline: 8px;
  }

  .sto-booking-modal {
    padding: 12px;
  }

  .sto-booking-dialog {
    width: min(100%, 448px);
    max-height: calc(100dvh - 24px);
    padding: 20px;
  }

  .sto-booking-form > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .sto-footer-cta .sto-shell,
  .sto-footer-bottom .sto-shell {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 782px) {
  .admin-bar .sto-header {
    top: 46px;
  }

  .admin-bar .sto-site-nav,
  .admin-bar .sto-phone-dropdown .sto-contact-card {
    top: 122px;
  }

  .admin-bar .sto-search-panel {
    top: 46px;
  }
}

@media screen and (max-width: 767px) {
  .admin-bar .sto-header {
    top: 0;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

@media (max-width: 640px) {
  .sto-footer-grid {
    grid-template-columns: 1fr;
  }

  .sto-booking-form > div {
    grid-template-columns: minmax(0, 1fr);
  }

}

@media (max-width: 480px) {
  .sto-booking-modal {
    align-items: center;
    padding: 10px;
  }

  .sto-booking-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 18px;
    border-radius: 18px;
  }

  .sto-booking-heading {
    gap: 12px;
    margin-bottom: 16px;
  }

  .sto-booking-heading h2 {
    font-size: 21px;
    line-height: 1.15;
  }

  .sto-booking-heading p,
  .sto-booking-form > small {
    font-size: 15px;
    line-height: 1.35;
  }

  .sto-booking-form {
    gap: 12px;
  }

  .sto-booking-form input,
  .sto-booking-form textarea {
    min-height: 52px;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.3;
    appearance: none;
    -webkit-appearance: none;
  }

  .sto-booking-form input[type="date"],
  .sto-booking-form input[type="time"] {
    display: block;
    width: 100%;
  }

  .sto-booking-form textarea {
    min-height: 92px;
  }

  .sto-booking-form > button {
    min-height: 56px;
    font-size: 18px;
  }

}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--sto-ink);
  background: var(--sto-white);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1336px);
  margin-inline: auto;
}

.content-narrow {
  max-width: 900px;
}

@media (min-width: 1024px) {
  .sto-header .sto-shell {
    width: min(100%, 1400px);
    padding-inline: 32px;
  }

  .sto-shell,
  .container {
    width: min(100% - 64px, 1336px);
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--sto-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.site-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-logo img,
.site-logo .custom-logo {
  width: 88px;
  height: 72px;
  object-fit: contain;
}

.primary-nav {
  flex: 1;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__list a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  color: #374151;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a {
  color: var(--sto-red);
  background: rgba(220, 38, 38, 0.06);
}

.header-phone {
  flex: 0 0 auto;
  color: var(--sto-ink);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: #f3f4f6;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  border-radius: 2px;
  background: #6b7280;
}

.hero,
.service-hero {
  position: relative;
  overflow: hidden;
  color: var(--sto-white);
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.2) 0%, rgba(5, 10, 18, 0.08) 56%, rgba(5, 10, 18, 0.2) 100%),
    url("../images/hero-garage-v2.jpg") center / cover;
}

.service-hero {
  background:
    linear-gradient(135deg, rgba(15, 15, 26, 0.98), rgba(26, 26, 46, 0.94) 55%, rgba(15, 52, 96, 0.92)),
    url("../images/garage.jpg") center / cover;
}

.service-page-hero {
  background:
    linear-gradient(135deg, rgba(15, 15, 26, 0.96), rgba(26, 26, 46, 0.9) 52%, rgba(15, 52, 96, 0.88)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&h=900&fit=crop&auto=format") center / cover;
}

.service-page-hero--timing-belt {
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.62) 0%, rgba(3, 8, 15, 0.5) 34%, rgba(3, 8, 15, 0.2) 62%, rgba(3, 8, 15, 0.08) 100%),
    url("../images/timing-belt-hero-v2.jpg") center / cover;
}

.service-page-hero--engine-repair {
  background-image: url("../images/engine-repair-hero-v2.jpg");
  background-position: center;
  background-size: cover;
}

.brand-hero--alfa-romeo {
  background-image: url("../images/alfa-romeo-hero-v2.jpg");
  background-position: center;
  background-size: cover;
}

.hero::before,
.service-hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--sto-red);
  content: "";
}

.hero__grid,
.service-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 48px;
  min-height: 620px;
  padding-block: 80px;
}

.hero__grid,
.service-hero__grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  max-width: 1040px;
  gap: 40px;
}

.hero__content {
  max-width: 720px;
}

.hero h1,
.service-hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.hero__content > p,
.service-hero p {
  max-width: 680px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.hero__address {
  margin-block: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.service-hero__address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.service-hero__address span,
.service-hero__address a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-hero__address span svg {
  color: var(--sto-red);
}

.service-hero__address a {
  padding: 7px 12px;
  border: 1px solid rgba(220, 38, 38, 0.42);
  border-radius: 9px;
  color: var(--sto-red);
  font-weight: 700;
}

.service-hero__address a:hover {
  background: rgba(220, 38, 38, 0.1);
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  column-gap: 24px;
  row-gap: 12px;
  min-height: 43px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.hero__features span {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero__features svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--sto-red);
}

.button.hero-booking-mobile {
  display: none;
}

.hero__features em {
  color: var(--sto-red);
  font-style: normal;
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--sto-red);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--icon::before {
  display: none;
}

.eyebrow--dark {
  padding: 7px 13px;
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.14);
}

.eyebrow--dark::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button--primary {
  color: var(--sto-white);
  background: var(--sto-red);
}

.hero-call-desktop svg {
  flex: none;
  color: currentColor;
  stroke-width: 2.2;
}

.button--primary:hover {
  background: var(--sto-red-dark);
}

.button--ghost {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.24);
}

.button--ghost:hover {
  color: var(--sto-white);
  border-color: rgba(255, 255, 255, 0.56);
}

.button--outline {
  color: #374151;
  border-color: #d1d5db;
  background: var(--sto-white);
}

.button--outline:hover {
  color: var(--sto-red);
  border-color: var(--sto-red);
}

.booking-card {
  padding: 24px;
  border-radius: 16px;
  color: var(--sto-ink);
  background: var(--sto-white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.booking-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.booking-card > p,
.booking-form small {
  margin: 0 0 20px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.35;
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-form label span {
  display: block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sto-line);
  border-radius: 12px;
  outline: none;
  color: var(--sto-ink);
  background: #f9fafb;
  font-size: 14px;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--sto-red);
  background: var(--sto-white);
}

.booking-form button {
  width: 100%;
  margin-top: 2px;
  padding-block: 13px;
}

.booking-form small {
  margin: 0;
  text-align: center;
}

.booking-form small a {
  color: #dc2626;
  font-weight: 700;
}

.form-notice {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.form-notice--success {
  color: #166534;
  background: #dcfce7;
}

.form-notice--error {
  color: #991b1b;
  background: #fee2e2;
}

.section {
  padding-block: 70px;
}

.section--muted {
  background: var(--sto-muted);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.consultation-promo h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.home-services-section {
  padding-block: 48px;
}

.home-services-heading {
  margin-bottom: 56px;
}

.home-services-heading .eyebrow::after {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.home-service-category {
  overflow: hidden;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: var(--sto-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-service-category:hover {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.home-service-category.is-open {
  border-color: var(--sto-red);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.1);
}

.home-service-category__toggle {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border: 0;
  cursor: pointer;
  color: var(--sto-ink);
  background: transparent;
  text-align: left;
}

.home-service-category__icon {
  display: flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--sto-red);
  background: rgba(220, 38, 38, 0.08);
  transition: 0.2s ease;
}

.home-service-category:hover .home-service-category__icon {
  background: rgba(220, 38, 38, 0.15);
}

.home-service-category.is-open .home-service-category__icon {
  color: var(--sto-white);
  background: var(--sto-red);
}

.home-service-category__title {
  flex: 1;
  min-width: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.home-service-category__arrow {
  display: flex;
  flex: 0 0 auto;
  color: #d1d5db;
  transition: 0.2s ease;
}

.home-service-category.is-open .home-service-category__arrow {
  color: var(--sto-red);
  transform: rotate(180deg);
}

.home-service-category__items {
  padding: 12px 24px 20px;
  border-top: 1px solid #f0f1f3;
}

.home-service-category__items ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-service-category__items a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.home-service-category__items a:hover {
  color: var(--sto-red);
}

.home-service-category__items i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--sto-red);
}

.service-card,
.review-card,
.consultation-card,
.content-card {
  padding: 24px;
  border: 1px solid var(--sto-line);
  border-radius: var(--sto-radius);
  background: var(--sto-white);
  transition: 0.2s ease;
}

.service-card:hover,
.content-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.service-card__mark {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 4px;
  background: var(--sto-red);
}

.service-card h3,
.content-card h2 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.32;
}

.service-card p,
.content-card p,
.review-card p {
  color: var(--sto-text);
  font-size: 14px;
  line-height: 1.7;
}

.text-link {
  color: var(--sto-red);
  font-size: 13px;
  font-weight: 700;
}

.stars {
  margin-bottom: 16px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.review-card strong {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f1f3;
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: #9ca3af;
  font-size: 12px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center .eyebrow::after {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--sto-red);
  content: "";
}

.home-reviews {
  overflow: hidden;
}

.home-reviews__track,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: var(--sto-white);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.review-card__header h2 {
  margin: 0;
  color: var(--sto-ink);
  font-size: 16px;
  font-weight: 600;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 5px;
}

.review-stars span {
  display: inline;
  margin: 0;
  color: #e5e7eb;
  font-size: 17px;
  line-height: 1;
}

.review-stars span.is-active {
  color: #f59e0b;
}

.review-card__text {
  flex: 1;
}

.review-card__text p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}

.review-card__vehicle {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 6px;
}

.review-card__vehicle strong,
.review-card__vehicle a {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--sto-red);
  font-size: 14px;
  font-weight: 600;
}

.review-card__vehicle a:hover {
  text-decoration: underline;
}

.review-card__vehicle span {
  display: inline;
  margin: 0;
  overflow: hidden;
  color: #6b7280;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__footer time {
  flex: 0 0 auto;
  color: #9ca3af;
  font-size: 12px;
  white-space: nowrap;
}

.review-all-button {
  gap: 8px;
  background: var(--sto-white);
}

.reviews-hero {
  padding-block: 48px;
  border-bottom: 1px solid var(--sto-line);
  background: var(--sto-white);
}

.reviews-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.reviews-hero h1 {
  margin: 10px 0 0;
  color: var(--sto-ink);
  font-size: clamp(25px, 3.1vw, 32px);
  line-height: 1.16;
}

.reviews-hero p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.reviews-summary .review-stars {
  margin: 0;
}

.reviews-summary strong {
  color: var(--sto-ink);
}

.reviews-summary i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9ca3af;
}

.reviews-summary > span {
  color: #6b7280;
  font-size: 14px;
}

.reviews-archive {
  min-height: 50vh;
  padding-block: 40px 72px;
  background: #f9fafb;
}

.review-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 2px solid var(--sto-red);
  border-radius: 12px;
  color: var(--sto-red);
  background: var(--sto-white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.review-add-button:hover {
  color: var(--sto-white);
  background: var(--sto-red);
}

.review-add-button--mobile {
  display: none;
}

.pagination {
  margin-top: 40px;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sto-line);
  border-radius: 12px;
  color: #4b5563;
  background: var(--sto-white);
  font-size: 14px;
  font-weight: 600;
}

.pagination .page-numbers.current {
  border-color: var(--sto-red);
  color: var(--sto-white);
  background: var(--sto-red);
}

.review-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
}

.review-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  background: var(--sto-white);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
}

.review-modal__header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f3f4f6;
  background: var(--sto-white);
}

.review-modal__header strong {
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-modal__header strong svg {
  color: var(--sto-red);
}

.review-modal__header button {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #6b7280;
  background: #f3f4f6;
  cursor: pointer;
}

.review-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.review-form > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.review-form__vehicle {
  grid-template-columns: 1fr 1fr 0.7fr !important;
}

.review-form input[type="text"],
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  color: var(--sto-ink);
  background: #f9fafb;
  font: inherit;
  font-size: 14px;
}

.review-form input[type="text"]:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--sto-red);
}

.review-form textarea {
  resize: none;
}

.review-form > button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  color: var(--sto-white);
  background: var(--sto-red);
  font-weight: 700;
  cursor: pointer;
}

.review-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating legend {
  width: 100%;
  margin-bottom: 5px;
  color: #9ca3af;
  font-size: 12px;
}

.review-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-rating label {
  color: #e5e7eb;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.review-rating input:checked ~ label,
.review-rating label:hover,
.review-rating label:hover ~ label {
  color: #f59e0b;
}

.review-modal__success {
  padding: 52px 24px;
  text-align: center;
}

.review-modal__success > svg {
  color: var(--sto-red);
}

.review-modal__success h2 {
  margin: 16px 0 4px;
  font-size: 18px;
}

.review-modal__success p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 11px;
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 8px;
  color: var(--sto-red);
  background: rgba(220, 38, 38, 0.05);
  font-size: 12px;
  font-weight: 700;
}

.consultation-card h2 {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.45;
}

.consultation-card__answer {
  margin-inline: -24px;
  margin-bottom: -24px;
  padding: 22px 24px 24px;
  border-top: 1px solid var(--sto-line);
  border-radius: 0 0 var(--sto-radius) var(--sto-radius);
  color: var(--sto-text);
  background: var(--sto-white);
  font-size: 14px;
  line-height: 1.7;
}

.consultation-card__answer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sto-red);
  font-size: 12px;
}

.section-action {
  margin-top: 32px;
  text-align: center;
}

.consultation-promo {
  display: grid;
  gap: 28px;
  padding: 32px;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: var(--sto-white);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.home-consultation-section {
  padding-block: 48px;
  background: var(--sto-white);
}

.home-consultation-section .consultation-promo {
  max-width: 1200px;
}

.home-consultation-section .eyebrow {
  margin-bottom: 12px;
}

.home-consultation-section .consultation-promo h2 {
  max-width: 576px;
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.consultation-promo p {
  color: var(--sto-text);
}

.consultation-promo__muted {
  max-width: 760px;
  margin-top: 8px;
  color: #9ca3af !important;
}

.consultation-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.consultation-stats span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  color: #9ca3af;
  background: #f9fafb;
}

.consultation-stats span > svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  padding: 8px;
  border-radius: 10px;
  color: var(--sto-red);
  background: rgba(220, 38, 38, 0.08);
}

.consultation-stats em {
  display: block;
  font-size: 12px;
  font-style: normal;
}

.consultation-stats strong {
  display: block;
  color: var(--sto-ink);
  font-size: 16px;
}

.consultation-promo__action {
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
  text-align: center;
}

.consultation-promo__action .button {
  gap: 8px;
}

.consultations-hero {
  padding-block: 48px;
  border-bottom: 1px solid var(--sto-line);
  background: #f9fafb;
}

.consultations-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.consultations-hero h1 {
  margin: 10px 0 0;
  color: var(--sto-ink);
  font-size: clamp(25px, 3.1vw, 32px);
  line-height: 1.16;
}

.consultations-hero p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.consultation-ask-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 2px solid var(--sto-red);
  border-radius: 12px;
  color: var(--sto-red);
  background: var(--sto-white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.consultation-ask-button:hover {
  color: var(--sto-white);
  background: var(--sto-red);
}

.consultation-ask-button--mobile {
  display: none;
}

.consultation-filters {
  position: sticky;
  z-index: 30;
  top: 76px;
  background: var(--sto-white);
}

.consultation-filters__form {
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-block: 24px;
}

.consultation-filters label {
  position: relative;
  display: block;
}

.consultation-filters select {
  width: 100%;
  height: 46px;
  appearance: none;
  padding: 0 42px 0 16px;
  border: 1px solid var(--sto-line);
  border-radius: 12px;
  outline: none;
  color: #374151;
  background: #f9fafb;
  font-weight: 600;
}

.consultation-filters select:disabled {
  color: #9ca3af;
  cursor: not-allowed;
}

.consultation-filters label svg {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #9ca3af;
  pointer-events: none;
  transform: translateY(-50%);
}

.consultations-archive {
  padding-block: 0 48px;
  background: var(--sto-white);
}

.consultations-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.consultations-empty {
  padding: 80px 0;
  color: #9ca3af;
  text-align: center;
}

.consultation-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: var(--sto-white);
  box-shadow: none;
}

.consultation-card__question {
  padding: 20px;
  border-bottom: 1px solid #f3f4f6;
  background: #f9fafb;
}

.consultation-card .tag {
  margin-bottom: 12px;
}

.consultation-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.consultation-card__tags .tag {
  margin-bottom: 0;
}

.consultation-card__title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consultation-card__title svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--sto-red);
}

.consultation-card__title h2 {
  margin: 0;
  color: var(--sto-ink);
  font-size: 15px;
  line-height: 1.35;
}

.consultation-card__answer {
  margin: 0;
  padding: 20px;
  border-top: 0;
  border-radius: 0;
  background: var(--sto-white);
}

.consultation-card__answer strong {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  color: var(--sto-red);
  font-size: 12px;
  text-transform: none;
}

.consultation-card__answer p {
  margin: 0 0 16px;
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
}

.consultation-votes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.consultation-votes > span {
  color: #9ca3af;
  font-size: 12px;
}

.consultation-vote {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border: 0;
  border-radius: 9px;
  font-size: 14px;
  cursor: pointer;
}

.consultation-vote:disabled {
  cursor: default;
  opacity: 1;
}

.consultation-vote--like {
  color: #16a34a;
  background: #f0fdf4;
}

.consultation-vote--dislike {
  color: #ef4444;
  background: #fef2f2;
}

.consultation-vote.is-voted {
  filter: saturate(1.2);
  font-weight: 700;
}

.consultation-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.consultation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
}

.consultation-modal__dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  background: var(--sto-white);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
}

.consultation-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f3f4f6;
}

.consultation-modal__header strong {
  display: flex;
  align-items: center;
  gap: 9px;
}

.consultation-modal__header strong svg {
  color: var(--sto-red);
}

.consultation-modal__header button {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #6b7280;
  background: #f3f4f6;
  cursor: pointer;
}

.consultation-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  outline: none;
  color: var(--sto-ink);
  background: #f9fafb;
  font: inherit;
  font-size: 14px;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--sto-red);
}

.consultation-form textarea {
  resize: none;
}

.consultation-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  color: var(--sto-white);
  background: var(--sto-red);
  font-weight: 700;
  cursor: pointer;
}

.consultation-modal__success {
  padding: 52px 24px;
  text-align: center;
}

.consultation-modal__success > svg {
  color: #16a34a;
}

.consultation-modal__success h2 {
  margin: 16px 0 4px;
  font-size: 18px;
}

.consultation-modal__success p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.contacts-page {
  padding-block: 48px;
}

.page-template-page-contacts .page-hero {
  padding-block: 40px;
}

.page-template-page-contacts .page-hero h1 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.page-template-page-contacts .page-hero p {
  margin-top: 8px;
  font-size: 14px;
}

.contacts-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 40px;
  align-items: start;
}

.contacts-page__left,
.contacts-page__right {
  display: grid;
  gap: 24px;
}

.contact-panel,
.contact-form-card {
  padding: 24px;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: #f9fafb;
}

.contact-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-panel__header span,
.contact-map__badge > span {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--sto-white);
  background: var(--sto-red);
}

.contact-panel__header strong {
  color: var(--sto-ink);
  font-size: 16px;
}

.contact-panel__phones {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-panel__phones a {
  color: var(--sto-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.contact-panel__phones a:hover,
.contact-panel__main-link:hover {
  color: var(--sto-red);
}

.contact-panel__messengers,
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-messenger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
  color: var(--sto-white);
  font-size: 14px;
  font-weight: 700;
}

.contact-messenger--viber {
  background: #7360f2;
}

.contact-messenger--telegram {
  background: #29b6f6;
}

.contact-panel__main-link {
  color: var(--sto-ink);
  font-size: 18px;
  font-weight: 700;
}

.contact-panel__address {
  margin: 0 0 4px;
  color: var(--sto-ink);
  font-size: 18px;
  font-weight: 700;
}

.contact-panel__muted {
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 14px;
}

.contact-route {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 9px;
  color: var(--sto-red);
  font-size: 12px;
  font-weight: 700;
}

.contact-route:hover {
  background: rgba(220, 38, 38, 0.08);
}

.contact-schedule {
  display: grid;
  gap: 12px;
}

.contact-schedule div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-schedule span {
  color: #4b5563;
  font-size: 14px;
}

.contact-schedule strong,
.contact-schedule em {
  color: var(--sto-ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.contact-schedule em {
  color: #9ca3af;
}

.contact-social {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sto-line);
  border-radius: 12px;
  color: var(--sto-ink);
  background: var(--sto-white);
  font-size: 12px;
  font-weight: 800;
  transition: 0.2s ease;
}

.contact-social:hover {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.contact-social--instagram {
  color: #e4405f;
}

.contact-social--facebook {
  color: #1877f2;
}

.contact-social--youtube {
  color: #ff0000;
}

.contact-social--viber {
  color: #7360f2;
}

.contact-social--telegram {
  color: #29b6f6;
}

.contact-map {
  position: relative;
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: #f3f4f6;
}

.contact-map iframe {
  display: block;
  filter: grayscale(1);
}

.contact-map__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--sto-white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.contact-map__badge strong,
.contact-map__badge small {
  display: block;
}

.contact-map__badge strong {
  color: var(--sto-ink);
  font-size: 14px;
  line-height: 1.2;
}

.contact-map__badge small {
  margin-top: 2px;
  color: #9ca3af;
  font-size: 12px;
}

.contact-form-card h2 {
  margin: 0 0 4px;
  color: var(--sto-ink);
  font-size: 18px;
}

.contact-form-card > p {
  margin: 0 0 24px;
  color: #6b7280;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label span {
  display: block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--sto-line);
  border-radius: 12px;
  outline: none;
  color: var(--sto-ink);
  background: var(--sto-white);
  font: inherit;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sto-red);
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  border: 0;
  border-radius: 12px;
  color: var(--sto-white);
  background: var(--sto-red);
  font-weight: 800;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--sto-red-dark);
}

.contact-form small {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

.form-consent input[type="checkbox"] {
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: #dc2626;
}

.sto-booking-form .form-consent > span,
.booking-form .form-consent > span,
.contact-form .form-consent > span {
  display: inline;
  margin: 0;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.form-consent a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-success {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-form-success svg {
  color: var(--sto-red);
}

.contact-form-success strong {
  margin-top: 16px;
  color: var(--sto-ink);
  font-size: 20px;
}

.contact-form-success span {
  margin-top: 8px;
  color: #6b7280;
  font-size: 14px;
}

.page-hero {
  padding-block: 90px;
  border-bottom: 1px solid var(--sto-line);
  background: var(--sto-muted);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #6b7280;
  line-height: 1.7;
}

.service-hero__grid {
  min-height: 540px;
}

.entry-content {
  color: var(--sto-text);
  font-size: 16px;
  line-height: 1.8;
}

.about-page {
  background: var(--sto-white);
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  color: var(--sto-white);
}

.about-hero__bg,
.about-hero__overlay {
  position: absolute;
  inset: 0;
}

.about-hero__bg {
  background-position: center;
  background-size: cover;
}

.about-hero__overlay {
  background: rgba(17, 24, 39, 0.75);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 96px;
}

.about-hero h1 {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--sto-white);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.about-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.eyebrow-line--light span {
  color: var(--sto-red);
}

.about-stats {
  background: var(--sto-red);
}

.about-stats .container {
  max-width: 1400px;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-stat {
  min-height: 118px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.about-stat:last-child {
  border-right: 0;
}

.about-stat strong,
.about-stat span {
  display: block;
}

.about-stat strong {
  color: var(--sto-white);
  font-size: clamp(28px, 3.3vw, 38px);
  font-weight: 800;
  line-height: 1;
}

.about-stat span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.about-values,
.about-gallery-section {
  padding-block: 64px;
}

.about-values__grid {
  gap: 20px;
}

.about-value-card {
  border-radius: 16px;
}

.about-value-card__icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  color: var(--sto-red);
  background: rgba(220, 38, 38, 0.08);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  background: #111827;
}

.about-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-gallery__item::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  content: "";
  transition: background 0.25s ease;
}

.about-gallery__item span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: var(--sto-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.about-gallery__item:hover img {
  transform: scale(1.05);
}

.about-gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.about-gallery__item:hover span {
  opacity: 1;
}

.about-lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
}

.about-lightbox__figure {
  position: relative;
  width: min(100% - 112px, 920px);
  margin: 0;
}

.about-lightbox__figure img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 14px;
}

.about-lightbox__figure figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-align: center;
}

.about-lightbox__figure span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.5);
  font-size: 12px;
}

.about-lightbox__nav,
.about-lightbox__close {
  position: absolute;
  z-index: 1;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--sto-white);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.about-lightbox__nav:hover,
.about-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.about-lightbox__nav--prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.about-lightbox__nav--next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.about-lightbox__close {
  top: 18px;
  right: 18px;
}

.entry-content h2,
.entry-content h3 {
  color: var(--sto-ink);
}

.entry-content a {
  color: var(--sto-red);
  text-decoration: underline;
}

.entry-content p {
  margin: 0 0 20px;
}

.entry-content h2,
.entry-content h3 {
  margin: 34px 0 14px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.entry-content ul,
.entry-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 24px;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  padding-left: 5px;
}

.entry-content li::marker {
  color: var(--sto-red);
  font-weight: 700;
}

.entry-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-left: 4px solid var(--sto-red);
  border-radius: 0 var(--sto-radius) var(--sto-radius) 0;
  color: #374151;
  background: rgba(220, 38, 38, 0.05);
  font-style: italic;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content blockquote cite {
  display: block;
  margin-top: 12px;
  color: var(--sto-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.service-section-container {
  max-width: 1336px;
}

.service-section-narrow {
  max-width: 900px;
}

.service-section-standard {
  max-width: 1000px;
}

.service-related-section {
  padding-block: 22px 34px;
  border-top: 1px solid var(--sto-line);
  background: var(--sto-muted);
}

.service-related-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.service-related-links a {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--sto-line);
  border-radius: 12px;
  color: var(--sto-ink);
  background: var(--sto-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.service-related-links a:hover {
  border-color: rgba(220, 38, 38, 0.45);
  color: var(--sto-red);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.single-sto_service .section {
  padding-block: 48px;
}

.single-sto_service .section-heading {
  max-width: 576px;
  margin-bottom: 40px;
}

.single-sto_service .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--sto-red);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.single-sto_service .section-heading .eyebrow::before,
.single-sto_service .section-heading .eyebrow::after {
  width: 48px;
  height: 1px;
  background: var(--sto-red);
  content: "";
}

.single-sto_service .section-heading h2 {
  margin-bottom: 12px;
  color: #111827;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.24;
}

.single-sto_service .service-section--prices .section-heading h2 {
  font-size: clamp(1.4rem, 2.9vw, 1.85rem);
}

.single-sto_service .section-heading p {
  max-width: 512px;
  margin-inline: auto;
  color: #6b7280;
  line-height: 1.625;
}

.single-sto_service .service-signs-section,
.single-sto_service .service-process-section {
  padding-block: 48px;
}

.single-sto_service .service-section-react {
  max-width: 1000px;
}

.single-sto_service .service-section-react .section-heading {
  margin-bottom: 40px;
}

.single-sto_service .service-section-react .section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
}

.section-heading > p,
.section-note {
  color: var(--sto-text);
  line-height: 1.7;
}

.service-price-list {
  overflow: hidden;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: var(--sto-white);
}

.service-price-list__row {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--sto-line);
  color: #374151;
  font-size: 16px;
  line-height: 24px;
}

.service-price-list__row:last-child {
  border-bottom: 0;
}

.service-price-list__row.is-muted {
  background: #f3f4f6;
}

.service-price-list__row strong {
  flex: 0 0 auto;
  color: var(--sto-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: right;
  white-space: nowrap;
}

.section-note {
  margin: 20px 0 0;
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

.prices-page {
  min-height: 100vh;
  background: #f9fafb;
}

.prices-hero {
  padding-block: 40px;
  border-bottom: 1px solid #e5e7eb;
  background: var(--sto-white);
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.eyebrow-line i {
  width: 40px;
  height: 1px;
  background: var(--sto-red);
}

.eyebrow-line span {
  color: var(--sto-red);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.prices-hero h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.prices-hero p {
  max-width: 576px;
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.prices-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-block: 40px 80px;
}

.prices-content {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  gap: 24px;
}

.prices-table-card {
  overflow: hidden;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: var(--sto-white);
}

.prices-table-card header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--sto-line);
}

.prices-table-card header i {
  width: 4px;
  height: 20px;
  flex: 0 0 4px;
  border-radius: 999px;
  background: var(--sto-red);
}

.prices-table-card h2 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 24px;
}

.prices-table-card table {
  width: 100%;
  border-collapse: collapse;
}

.prices-table-card tbody,
.prices-table-card tr,
.prices-table-card td {
  display: block;
}

.prices-table-card tr {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--sto-line);
}

.prices-table-card tr:last-child {
  border-bottom: 0;
}

.prices-table-card tr:nth-child(even) {
  background: #f3f4f6;
}

.prices-table-card td {
  padding: 0;
  color: #374151;
  font-size: 16px;
  line-height: 24px;
}

.prices-table-card td:first-child {
  min-width: 0;
  width: auto;
}

.prices-table-card td:last-child {
  flex: 0 0 auto;
  color: #111827;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.prices-table-card a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.prices-table-card a:hover {
  color: var(--sto-red);
}

.prices-note {
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.prices-sidebar {
  position: sticky;
  top: 96px;
  display: block;
  width: 380px;
  flex: 0 0 380px;
}

.prices-sidebar .booking-card {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: var(--sto-white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.prices-sidebar .booking-card h2 {
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 28px;
}

.prices-sidebar .booking-card > p {
  margin-bottom: 20px;
  color: #9ca3af;
  font-size: 14px;
}

.service-card__icon {
  display: block;
  margin-bottom: 14px;
  font-size: 28px;
}

.single-sto_service .content-card {
  padding: 20px;
  border-color: #e5e7eb;
  border-radius: 16px;
  background: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.single-sto_service .content-card:hover {
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.single-sto_service .content-card h2 {
  margin-bottom: 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
}

.single-sto_service .content-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.625;
}

.single-sto_service .service-signs-grid {
  gap: 16px;
}

.single-sto_service .service-sign-card {
  padding: 20px;
  background: #f9fafb;
  transform: none;
}

.single-sto_service .service-sign-card:hover {
  transform: none;
}

.single-sto_service .service-sign-card .service-card__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--sto-red);
}

.single-sto_service .service-sign-card .service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.1;
  line-height: 1;
}

.single-sto_service .service-sign-card h2 {
  margin-bottom: 8px;
}

.service-tip,
.service-quote {
  margin: 32px 0 0;
  padding: 20px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 16px;
  color: #374151;
  background: rgba(220, 38, 38, 0.05);
  font-size: 16px;
  line-height: 1.625;
}

.service-signs-tip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-signs-tip > span {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
}

.service-signs-tip p {
  margin: 0;
}

.service-process-grid {
  gap: 20px;
}

.service-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: var(--sto-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-step:hover {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.service-step > span {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--sto-white);
  background: var(--sto-red);
  font-weight: 800;
}

.service-step h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.service-step p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.625;
}

.service-brands {
  border-block: 1px solid var(--sto-line);
}

.brands-section {
  background: var(--sto-white);
}

.brands-section .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sto-red);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.brands-section .section-heading .eyebrow::before,
.brands-section .section-heading .eyebrow::after {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--sto-red);
  content: "";
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.brand-card {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  color: #4b5563;
  background: var(--sto-white);
  transition: 0.2s ease;
}

a.brand-card:hover {
  color: var(--sto-ink);
  border-color: var(--sto-red);
  transform: translateY(-2px);
}

.brand-card__logo {
  display: flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
}

.brand-card__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-card strong {
  font-size: 16px;
  line-height: 1.25;
}

.brands-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.brands-toggle {
  display: inline-flex;
  min-width: 160px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  cursor: pointer;
  color: #374151;
  background: var(--sto-white);
  font: inherit;
  font-weight: 600;
}

.brands-toggle:hover {
  color: var(--sto-red);
  border-color: var(--sto-red);
}

.brands-toggle.is-active {
  color: var(--sto-white);
  background: var(--sto-red);
  border-color: var(--sto-red);
}

.brands-toggle.is-active svg {
  transform: rotate(180deg);
}

.brands-panel {
  margin-top: 28px;
}

.brand-models,
.brand-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-models span,
.brand-archive-card {
  padding: 18px 20px;
  border: 1px solid var(--sto-line);
  border-radius: 14px;
  color: var(--sto-ink);
  background: var(--sto-white);
  font-weight: 700;
}

.brand-models-table {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: var(--sto-white);
}

.brand-models-table__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--sto-line);
  background: #f9fafb;
}

.brand-models-table__head p {
  margin: 0;
  color: var(--sto-ink);
  font-size: 16px;
  font-weight: 700;
}

.brand-models-table__head button {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #9ca3af;
  background: transparent;
  cursor: pointer;
}

.brand-models-table__head button:hover {
  color: var(--sto-ink);
}

.brand-models-table__scroll {
  overflow: visible;
}

.brand-models-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.brand-models-table th {
  padding: 12px 24px;
  border-bottom: 1px solid #f3f4f6;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.brand-models-table th:first-child {
  width: clamp(108px, 18vw, 160px);
}

.brand-models-table td {
  padding: 12px 24px;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
}

.brand-models-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.brand-models-table td:first-child {
  white-space: nowrap;
}

.brand-models-table__models {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.brand-models-table__models span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border-radius: 8px;
  color: #374151;
  background: #f3f4f6;
  font-size: 14px;
  font-weight: 500;
}

.brand-archive-card {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s ease;
}

.brand-archive-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.brand-archive-card small {
  margin-top: 7px;
  color: var(--sto-red);
  font-size: 12px;
}

.service-faq {
  display: grid;
  gap: 12px;
}

.service-faq details {
  padding: 0 20px;
  border: 1px solid var(--sto-line);
  border-radius: 16px;
  background: var(--sto-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-faq details[open] {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.05);
}

.service-faq summary {
  position: relative;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.service-faq summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #6b7280;
  background: #f3f4f6;
  content: "+";
  transform: translateY(-50%);
}

.service-faq details[open] summary::after {
  color: var(--sto-white);
  background: var(--sto-red);
  content: "−";
}

.service-faq details p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--sto-text);
  line-height: 1.7;
}

.service-quote {
  text-align: center;
  font-style: italic;
}

.home-seo-article__content {
  display: grid;
  gap: 24px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
}

.home-seo-article__content p,
.home-seo-article__content ul,
.home-seo-article__content ol {
  margin: 0;
}

.home-seo-article__content strong,
.home-seo-article__content h3 {
  color: #111827;
}

.home-seo-article__content h3 {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.home-seo-article__content ul,
.home-seo-article__content ol {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.home-seo-article__content li {
  position: relative;
  padding-left: 34px;
}

.home-seo-article__content ul li::before {
  position: absolute;
  top: 0.72em;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sto-red);
  content: "";
}

.home-seo-article__content ol {
  counter-reset: home-seo-steps;
}

.home-seo-article__content ol li {
  counter-increment: home-seo-steps;
}

.home-seo-article__content ol li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--sto-red);
  background: rgba(220, 38, 38, 0.1);
  content: counter(home-seo-steps);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.home-seo-article__content blockquote {
  margin: 4px 0 0;
  padding: 24px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 16px;
  background: rgba(220, 38, 38, 0.05);
  text-align: center;
}

.home-seo-article__content blockquote p {
  color: #374151;
  font-style: italic;
}

.home-seo-article__content cite {
  display: block;
  margin-top: 12px;
  color: var(--sto-red);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.service-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--sto-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.error-page {
  min-height: 60vh;
  text-align: center;
}

.site-footer {
  padding-top: 60px;
  color: rgba(255, 255, 255, 0.66);
  background: #111827;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--sto-white);
  font-size: 15px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__brand {
  color: var(--sto-white);
  font-size: 22px !important;
  font-weight: 800;
}

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

.site-footer__bottom {
  margin-top: 48px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

@media (max-width: 1023px) {
  .header-phone {
    display: none;
  }

  .primary-nav__list a {
    padding-inline: 9px;
    font-size: 14px;
  }

  .hero__grid,
  .service-hero__grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .booking-card {
    display: none;
  }

  .hero-call-desktop {
    display: none;
  }

  .button.hero-booking-mobile {
    display: inline-flex;
  }

  .brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contacts-page__grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  .hero {
    background-image: url("../images/hero-garage-mobile-v3.jpg");
    background-position: center;
    background-size: cover;
  }

  .service-page-hero--timing-belt {
    background-image: url("../images/timing-belt-hero-mobile-v2.jpg");
    background-position: center;
    background-size: cover;
  }

  .service-page-hero--engine-repair {
    background-image: url("../images/engine-repair-hero-mobile-v2.jpg");
    background-position: center;
    background-size: cover;
  }

  .brand-hero--alfa-romeo {
    background-image: url("../images/alfa-romeo-hero-mobile-v2.jpg");
    background-position: center;
    background-size: cover;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 0 0;
    display: none;
    padding: 20px;
    background: var(--sto-white);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    display: block;
  }

  .primary-nav__list li {
    border-bottom: 1px solid #f0f1f3;
  }

  .primary-nav__list a {
    padding: 18px 4px;
    font-size: 16px;
  }

  .hero__grid,
  .service-hero__grid {
    min-height: auto;
    padding-block: 60px;
  }

  .section-heading h2,
  .consultation-promo h2 {
    font-size: 22px;
    line-height: 1.26;
  }

  .card-grid--three,
  .card-grid--two {
    grid-template-columns: 1fr;
  }

  .brand-models,
  .brand-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-models-table__head {
    padding: 16px 12px;
  }

  .brand-models-table th,
  .brand-models-table td {
    padding: 12px;
  }

  .brand-models-table table {
    min-width: 0;
  }

  .brand-models-table th {
    font-size: 14px;
  }

  .brand-models-table th:first-child {
    width: 92px;
  }

  .brand-models-table td {
    font-size: 15px;
  }

  .brand-models-table td:first-child {
    white-space: nowrap;
    font-weight: 500;
  }

  .brand-models-table__models span {
    padding: 2px 6px;
    font-size: 13px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1336px);
  }

  .site-logo img,
  .site-logo .custom-logo {
    width: 76px;
    height: 64px;
  }

  .hero h1,
  .service-hero h1,
  .page-hero h1 {
    font-size: 30px;
    line-height: 1.16;
  }

  .hero__content > p,
  .service-hero p {
    font-size: 15px;
  }

  .section {
    padding-block: 50px;
  }

  .page-hero {
    padding-block: 60px;
  }

  .consultation-stats {
    grid-template-columns: 1fr;
  }

  .brand-models,
  .brand-archive-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 72px;
    gap: 12px;
    padding: 12px;
  }

  .brand-card__logo,
  .brand-card__logo img {
    width: 42px;
    height: 42px;
  }

  .brand-card__logo {
    flex-basis: 42px;
  }

  .consultation-promo {
    padding: 24px;
  }

  .service-price-list__row {
    min-height: 72px;
    padding: 16px;
  }

  .service-step {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .reviews-grid,
  .consultations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero__features {
    grid-template-columns: 1fr;
    row-gap: 10px;
    min-height: 112px;
  }

  .hero__features span {
    white-space: normal;
  }

  .home-reviews__track {
    display: flex;
    gap: 16px;
    width: calc(100% + 16px);
    overflow-x: auto;
    padding: 2px 16px 8px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-reviews__track::-webkit-scrollbar {
    display: none;
  }

  .home-reviews__track .review-card {
    width: min(80vw, 360px);
    flex: 0 0 min(80vw, 360px);
    scroll-snap-align: start;
  }

  .reviews-hero {
    padding-block: 36px;
  }

  .reviews-hero__inner {
    display: block;
  }

  .review-add-button--desktop {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-archive {
    padding-bottom: 96px;
  }

  .review-add-button--mobile {
    position: fixed;
    z-index: 80;
    right: 16px;
    bottom: 20px;
    left: 16px;
    display: flex;
    border-color: var(--sto-red);
    color: var(--sto-white);
    background: var(--sto-red);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.25);
  }

  .review-card__footer {
    align-items: flex-start;
  }

  .review-modal {
    align-items: flex-end;
    padding: 0;
  }

  .review-modal__dialog {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
  }

  .consultations-hero {
    padding-block: 36px;
  }

  .consultations-hero__inner {
    display: block;
  }

  .consultation-ask-button--desktop {
    display: none;
  }

  .consultation-filters {
    position: static;
  }

  .consultation-filters__form {
    grid-template-columns: 1fr;
    padding-block: 18px;
  }

  .consultations-grid {
    grid-template-columns: 1fr;
  }

  .consultations-archive {
    padding-bottom: 96px;
  }

  .consultation-votes {
    align-items: flex-start;
  }

  .consultation-votes > span {
    width: 100%;
  }

  .consultation-ask-button--mobile {
    position: fixed;
    z-index: 80;
    right: 16px;
    bottom: 20px;
    left: 16px;
    display: flex;
    border-color: var(--sto-red);
    color: var(--sto-white);
    background: var(--sto-red);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.25);
  }

  .consultation-modal {
    align-items: flex-end;
    padding: 0;
  }

  .consultation-modal__dialog {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
  }
}

@media (max-width: 480px) {
  .review-form > div {
    grid-template-columns: 1fr 1fr;
  }

  .review-form__vehicle {
    grid-template-columns: 1fr !important;
  }

  .review-card__footer {
    gap: 8px;
  }

  .review-card__vehicle {
    display: block;
  }

  .review-card__vehicle span {
    margin-top: 3px;
  }

  .consultation-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-service-category__toggle {
    min-height: 82px;
    gap: 16px;
    padding: 13px 16px;
  }

  .home-service-category__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .home-service-category__items {
    padding-inline: 20px;
  }

  .contacts-page {
    padding-block: 32px;
  }

  .contact-panel,
  .contact-form-card {
    padding: 20px;
    border-radius: 14px;
  }

  .contact-panel__phones a {
    font-size: 19px;
  }

  .contact-schedule div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-map {
    height: 300px;
  }

  .contact-map__badge {
    right: 12px;
    left: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 1023px) {
  .about-hero {
    min-height: 380px;
  }

  .about-hero__content {
    padding-block: 72px;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat:nth-child(2n) {
    border-right: 0;
  }

  .about-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .about-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .prices-layout {
    display: block;
  }

  .prices-sidebar {
    display: none;
  }
}

@media (max-width: 640px) {
  .service-related-section {
    padding-block: 16px 28px;
  }

  .service-related-links a {
    white-space: normal;
  }

  .about-hero {
    min-height: 360px;
  }

  .about-hero__content {
    padding-block: 56px;
  }

  .about-hero h1 {
    font-size: 27px;
  }

  .about-values,
  .about-gallery-section {
    padding-block: 44px;
  }

  .about-stat {
    min-height: 104px;
    padding: 24px 12px;
  }

  .about-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-gallery__item {
    border-radius: 12px;
  }

  .about-gallery__item span {
    display: none;
  }

  .about-lightbox__figure {
    width: calc(100% - 32px);
  }

  .about-lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .about-lightbox__nav--prev {
    left: 18px;
  }

  .about-lightbox__nav--next {
    right: 18px;
  }

  .prices-hero {
    padding-block: 32px;
  }

  .prices-layout {
    padding-block: 32px 56px;
  }

  .prices-content {
    gap: 18px;
  }

  .prices-table-card {
    border-radius: 14px;
  }

  .prices-table-card header {
    padding: 14px 16px;
  }

  .prices-table-card tr {
    min-height: 78px;
    gap: 14px;
    padding: 12px 16px;
  }

  .prices-table-card td {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (min-width: 1024px) {
  .sto-site-nav > a,
  .sto-nav-dropdown > button {
    gap: 6px !important;
    padding: 10px 16px !important;
    color: #374151 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;
  }

  .sto-site-nav > a:hover,
  .sto-nav-dropdown > button:hover {
    color: #dc2626 !important;
    background: #f9fafb !important;
  }

  .sto-nav-dropdown > button.is-active {
    color: #dc2626 !important;
    background: rgba(220, 38, 38, 0.05) !important;
  }

  .sto-service-category,
  .sto-services-menu li li a,
  .sto-brands-menu a {
    color: #374151 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;
  }

  .sto-services-menu > ul {
    width: 280px !important;
  }

  .sto-service-category {
    padding: 10px 16px !important;
  }

  .sto-services-menu li li a {
    padding: 10px 16px !important;
  }

  .sto-brands-menu a {
    padding-block: 8px !important;
  }

  .sto-icon-button,
  .sto-language {
    height: 40px !important;
    border-radius: 8px !important;
    color: #6b7280 !important;
    background: #f3f4f6 !important;
  }

  .sto-icon-button:hover,
  .sto-language:hover {
    color: #4b5563 !important;
    background: #e5e7eb !important;
  }

  .sto-phone-button span {
    color: #1f2937 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    letter-spacing: 0 !important;
  }

  .sto-language {
    padding-inline: 12px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 20px !important;
    letter-spacing: 0 !important;
  }
}

.hero h1,
.service-hero h1,
.page-hero h1,
.page-template-page-contacts .page-hero h1,
.reviews-hero h1,
.consultations-hero h1,
.about-hero h1,
.prices-hero h1,
.error-page h1 {
  font-size: clamp(25px, 3.1vw, 32px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}
