/* ── Design tokens ── */
:root {
  --accent: #7ac943;
  --accent-hover: #6ab535;
  --accent-soft: #edf7e6;
  --gold: #fcb913;
  
  
  --dark: #1d1d1b;
  --gray-900: #2a2a28;
  --gray-700: #5c5c58;
  --gray-500: #8a8a85;
  --gray-300: #d4d4cf;
  --gray-100: #f5f5f2;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --header-h: 72px;
  --font: "Inter", system-ui, sans-serif;
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--dark);
}
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; border: none; background: none; }
ul { list-style: none; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 4px 20px rgba(122,201,67,.35); }
.btn--outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--light { background: var(--white); color: var(--accent); }
.btn--light:hover { box-shadow: var(--shadow-md); }
.btn--ghost { background: var(--gray-100); color: var(--dark); }
.btn--ghost:hover { background: var(--gray-300); }
.btn--sm { padding: 10px 20px; font-size: .875rem; }
.btn--full { width: 100%; }

.link-arrow {
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.link-arrow::after { content: "→"; transition: transform var(--transition); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ── Header ── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(29, 29, 27, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 16px;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-self: start;
  min-width: 0;
}
.header__logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(234px, 52vw);
  object-fit: contain;
  object-position: left center;
}
.header__logo-text {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}
.header__nav a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  white-space: nowrap;
  transition: color var(--transition);
}
.header__nav a:hover,
.header__nav a.is-active { color: var(--accent); }
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  justify-self: end;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  justify-self: center;
}
.header__phone {
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, .92);
}
.header__phone:hover { color: var(--accent); }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.contact-link__icon {
  flex-shrink: 0;
  color: var(--accent);
}
.contact-link--header {
  color: rgba(255, 255, 255, .92);
}
.contact-link--header:hover .contact-link__icon { color: var(--accent); }
.contact-link--footer {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}
.contact-link--footer:hover { color: var(--white); }
.contact-link--footer .contact-link__icon {
  color: rgba(255, 255, 255, .5);
}
.contact-link--footer:hover .contact-link__icon { color: var(--white); }
.footer__doc-link {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  transition: color var(--transition);
}
.footer__doc-link:hover { color: var(--white); }
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: transparent;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__menu {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 99;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform .28s cubic-bezier(.4, 0, .2, 1),
    opacity .28s cubic-bezier(.4, 0, .2, 1),
    visibility .28s;
}
.header__menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header__menu-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 8px 28px;
}
.header__menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  padding: 6px 0;
  white-space: nowrap;
  transition: color var(--transition);
}
.header__menu a:hover,
.header__menu a.is-active { color: var(--accent); }

.nav-backdrop {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 98;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: all;
}
body.menu-open { overflow: hidden; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 64px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(122,201,67,.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(29,29,27,.05) 0%, transparent 50%),
    linear-gradient(165deg, #fcfcfa 0%, #f3f1ed 55%, #ebe8e3 100%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.hero__intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  min-height: 100%;
}
.hero__label,
.promo-slider__label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  line-height: 1.2;
}
.hero__main {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.hero__title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  max-width: 18em;
}
.hero__accent { color: var(--accent); }
.hero__title .hero__gold { color: var(--gold); }
.hero__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 0;
}
.hero__text p + p {
  margin-top: 12px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.hero__stat {
  flex: 0 1 auto;
  min-width: 0;
  padding: 0;
}
.hero__stat + .hero__stat {
  padding: 0;
  border: none;
}
.hero__stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--dark);
}
.hero__stat span {
  display: block;
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: 2px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

/* ── Promo slider (hero) ── */
.hero__promo {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.promo-slider {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 14px;
  min-height: 100%;
}
.promo-slider__viewport {
  position: relative;
  min-height: 0;
}
.promo-slider__track {
  display: grid;
  grid-template-columns: 1fr;
}
.promo-slide {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
  z-index: 1;
}
.promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}
.promo-slide--dark {
  background: linear-gradient(145deg, #1d1d1b 0%, #2d2d2a 60%, #1a1a18 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.promo-slide--dark::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(122,201,67,.22) 0%, transparent 65%);
  pointer-events: none;
}
.promo-slide--green {
  background: linear-gradient(135deg, #6ab535 0%, #7ac943 45%, #8fd654 100%);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(122,201,67,.28);
}
.promo-slide--green::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.promo-slide--light {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-md);
}
.promo-slide--photo {
  color: var(--white);
  background: var(--dark);
  border: none;
  box-shadow: var(--shadow-lg);
}
.promo-slide--photo::before {
  display: none;
}
.promo-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.promo-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 29, 27, .42) 0%, rgba(29, 29, 27, .78) 100%);
}
.promo-slide--photo .promo-slide__badge {
  background: rgba(255, 255, 255, .16);
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
}
.promo-slide--photo .promo-slide__text,
.promo-slide--photo .promo-slide__note {
  color: rgba(255, 255, 255, .88);
  opacity: 1;
}
.promo-slide--photo .promo-slide__footer {
  border-top-color: rgba(255, 255, 255, .18);
}
.promo-slide__badge {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
}
.promo-slide--light .promo-slide__badge {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: transparent;
}
.promo-slide__title {
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 0;
  max-width: 18ch;
}
.promo-slide__text {
  font-size: .9rem;
  line-height: 1.55;
  opacity: .88;
  max-width: 42ch;
  margin-bottom: 0;
}
.promo-slide--light .promo-slide__text { color: var(--gray-700); opacity: 1; }
.promo-slide__note {
  font-size: .8rem;
  line-height: 1.45;
  opacity: .7;
  margin-top: 4px;
}
.promo-slide--light .promo-slide__note { color: var(--gray-500); opacity: 1; }
.promo-slide__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.promo-slide__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.15);
}
.promo-slide__footer .btn {
  flex-shrink: 0;
}
.promo-slide--light .promo-slide__footer {
  border-top-color: var(--gray-100);
}
.promo-slide--photo,
.promo-slide--photo .promo-slide__title {
  color: var(--white);
}
.promo-slide--photo .promo-slide__badge {
  background: rgba(255, 255, 255, .16);
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
}
.promo-slide--photo .promo-slide__text,
.promo-slide--photo .promo-slide__note {
  color: rgba(255, 255, 255, .9);
  opacity: 1;
}
.promo-slide--photo .promo-slide__footer {
  border-top-color: rgba(255, 255, 255, .18);
}
.promo-slide__price {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.promo-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.promo-slider__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.promo-slider__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.promo-slider__dots {
  display: flex;
  gap: 8px;
}
.promo-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.promo-slider__dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}
.promo-slider__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}
.promo-tab {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  cursor: pointer;
  min-width: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.promo-tab:hover {
  border-color: var(--accent);
}
.promo-tab.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--shadow-sm);
}
.promo-tab__badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
}
.promo-tab__title {
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
}

/* ── Sections ── */
.section { padding: 80px 0; }
.section__head { margin-bottom: 48px; }
.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section__title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.section__subtitle { color: var(--gray-700); max-width: 560px; }

/* ── Benefits ── */
.benefits { background: var(--gray-100); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-card__icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { color: var(--gray-700); font-size: .9rem; }

/* ── Services ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 0 20px;
  transition: box-shadow .2s ease;
}
.service-card:hover {
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .08);
}
.service-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--white);
}
.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
  padding: 16px 20px 0;
}
.service-card:hover .service-card__title {
  color: var(--accent);
}
.service-card__count {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--gray-500);
  padding: 8px 20px 0;
}
.service-card__price {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: .85rem; color: var(--gray-700); flex: 1; margin-bottom: 20px; }
.service-card__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card__link:hover { text-decoration: underline; }

/* ── VIP Banner ── */
.vip-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #3a3a36 100%);
  color: var(--white);
  padding: 56px 0;
}
.vip-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.vip-banner__content {
  flex: 1;
  min-width: 0;
  max-width: 720px;
}
.vip-banner__label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.vip-banner__title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.vip-banner__text {
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.vip-banner__inner > .btn {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .vip-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Locations ── */
.locations { padding-bottom: 0; }
.locations__panel {
  display: grid;
  grid-template-columns: 380px 1fr;
  height: 560px;
  border-top: 1px solid var(--gray-300);
}
.locations__sidebar {
  border-right: 1px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
}
.locations__search { padding: 16px; border-bottom: 1px solid var(--gray-300); }
.locations__search input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
}
.locations__search input:focus { border-color: var(--accent); }
.locations__list { overflow-y: auto; flex: 1; }
.location-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: background var(--transition);
}
.location-item:hover, .location-item.active { background: var(--accent-soft); }
.location-item__address { font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
.location-item__meta {
  display: flex;
  gap: 12px;
  font-size: .8rem;
  color: var(--gray-500);
}
.location-item__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.locations__map-wrap { position: relative; }
.locations__map { width: 100%; height: 100%; }
.location-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  overflow: hidden;
}
.location-card[hidden] {
  display: none !important;
}
.location-card__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  font-size: 1.25rem;
  color: var(--gray-700);
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-card__photo {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
  background: var(--gray-100);
}
.location-card__body {
  padding: 18px 20px 20px;
}
.location-card__address {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  padding-right: 20px;
}
.location-card__time {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.location-card__phones {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location-card__phone-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.location-card__phone-link {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}
.location-card__phone-link:hover {
  color: var(--accent);
}
.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Prices ── */
.prices { background: var(--gray-100); }
.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-card__head {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.price-card__head h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.price-card__head p { font-size: .8rem; color: var(--gray-500); }
.price-card__rows { padding: 8px 0; }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 24px;
  font-size: .875rem;
  border-bottom: 1px solid var(--gray-100);
}
.price-row:last-child { border-bottom: none; }
.price-row span:last-child { font-weight: 600; white-space: nowrap; }

/* ── CTA ── */
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta__text { color: var(--gray-700); margin: 16px 0 32px; }
.cta__contacts li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}
.cta__contacts li > span:first-child { color: var(--gray-500); }
.cta__contacts a:hover { color: var(--accent); }
.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.cta__form {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.cta__form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.cta__form-sub { font-size: .85rem; color: var(--gray-500); margin-bottom: 24px; }
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: .8rem; font-weight: 500; margin-bottom: 6px; color: var(--gray-700); }
.field input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.field input:focus { border-color: var(--accent); }
.custom-select { position: relative; }
.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition);
}
.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible {
  border-color: var(--accent);
  outline: none;
}
.custom-select__value { flex: 1; font-size: 1rem; color: var(--dark); }
.custom-select__value.is-placeholder { color: var(--gray-500); }
.custom-select__arrow {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform var(--transition);
}
.custom-select.is-open .custom-select__arrow { transform: rotate(180deg); }
.custom-select__dropdown {
  display: none;
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  list-style: none;
}
.custom-select.is-open .custom-select__dropdown { display: block; }
.custom-select__option {
  padding: 11px 16px;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition);
}
.custom-select__option:hover,
.custom-select__option.is-selected { background: var(--accent-soft); }
.custom-select__option.is-placeholder { color: var(--gray-500); cursor: default; }
.custom-select__option.is-placeholder:hover { background: transparent; }

.cta__form-note { font-size: .75rem; color: var(--gray-500); margin-top: 12px; text-align: center; }
.cta__form-note a { color: var(--accent); text-decoration: underline; }
.field .field__error { color: #c0392b; margin-top: 6px; margin-bottom: 0; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: start;
}
.footer__brand p { font-size: .85rem; margin-top: 12px; overflow-wrap: break-word; }
.footer__logo-wrap {
  display: inline-flex;
  align-items: center;
}
.footer__logo {
  display: block;
  height: 36px;
  width: auto;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 48px;
  align-items: start;
  min-width: 0;
}
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.footer__nav-col a {
  display: block;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin-top: 12px;
  line-height: 1.4;
}
.footer__legal a,
.footer__legal-sep {
  font-size: 11px;
}
.footer__legal a {
  color: rgba(255, 255, 255, .5);
}
.footer__legal a:hover { color: var(--white); }
.footer__legal-sep {
  color: rgba(255, 255, 255, .28);
}
.footer__nav a:hover, .footer__contacts a:hover { color: var(--white); }
.footer__contacts { display: flex; flex-direction: column; gap: 10px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom a:hover,
.footer__made a:hover { color: var(--white); }
.footer__made a {
  color: rgba(255, 255, 255, .85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Modal ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open {
  display: flex;
}
.modal[hidden] {
  display: none !important;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: min(520px, 100%);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--gray-500);
  cursor: pointer;
}
.modal__dialog h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.modal__text { color: var(--gray-700); font-size: .9rem; margin-bottom: 20px; }
.modal__locations { display: flex; flex-direction: column; gap: 8px; max-height: 300px; overflow-y: auto; }
.modal__loc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  transition: border-color var(--transition);
}
.modal__loc:hover { border-color: var(--accent); }
.modal__loc a { color: var(--accent); font-weight: 600; white-space: nowrap; }
.modal hr { border: none; border-top: 1px solid var(--gray-300); margin: 20px 0; }
.modal__alt { font-size: .875rem; color: var(--gray-700); }
.modal__alt a { color: var(--accent); font-weight: 600; }
.modal__empty { color: var(--gray-500); font-size: .875rem; }

/* ── Inner pages ── */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 56px;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(122,201,67,.06) 0%, transparent 60%),
    linear-gradient(160deg, #fafaf8 0%, #f0eeea 100%);
}
.page-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.page-hero__content {
  flex: 1;
  min-width: 0;
}
.page-hero__eyebrow {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero__text {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 640px;
  margin-bottom: 0;
}
.page-hero__btn {
  flex-shrink: 0;
  align-self: center;
}
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
#form {
  scroll-margin-top: calc(var(--header-h) + 24px);
}
@media (max-width: 768px) {
  .page-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.all-services { display: flex; flex-direction: column; gap: 24px; }

/* ── Services catalog ── */
.services-catalog { display: flex; flex-direction: column; gap: 20px; }
.service-catalog {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.service-catalog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 16px;
  flex-wrap: wrap;
}
.service-catalog__price {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}
.service-catalog__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.service-catalog__text { color: var(--gray-700); font-size: .9rem; max-width: 560px; }
.service-catalog__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.service-catalog__preview {
  padding: 0 24px 8px;
  border-bottom: 1px solid var(--gray-100);
}
.service-catalog__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--gray-100);
}
.service-catalog__row:last-child { border-bottom: none; }
.service-catalog__row span:last-child { font-weight: 600; white-space: nowrap; }
.service-catalog__full {
  display: none;
  padding: 16px 24px 8px;
  border-bottom: 1px solid var(--gray-100);
}
.service-catalog.is-expanded .service-catalog__full { display: block; }
.service-catalog.is-expanded .service-catalog__preview { display: none; }
.service-catalog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  flex-wrap: wrap;
  background: var(--gray-100);
}
.service-catalog__toggle {
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.service-catalog__toggle:hover { text-decoration: underline; }

/* ── Price tables (shared) ── */
.price-table { margin-bottom: 20px; }
.price-table:last-child { margin-bottom: 0; }
.price-table__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.price-table__rows { list-style: none; }
.price-table__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--gray-100);
}
.price-table__row:last-child { border-bottom: none; }
.price-table__row span:last-child { font-weight: 600; white-space: nowrap; }

/* ── Service detail page ── */
.service-page {
  padding: calc(var(--header-h) + 32px) 0 80px;
  min-height: 70vh;
}
.service-page__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.service-page__sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.service-nav__label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.service-nav { display: flex; flex-direction: column; gap: 4px; }
.service-nav__link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}
.service-nav__link:hover { background: var(--white); color: var(--accent); }
.service-nav__link.is-active {
  background: var(--white);
  color: var(--accent);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .85rem;
  color: var(--gray-500);
}
.breadcrumbs a {
  color: var(--gray-700);
  font-weight: 500;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { opacity: .6; }
.breadcrumbs span:last-child {
  min-width: 0;
}
.service-page__price {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.service-page__title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.service-page__text {
  color: var(--gray-700);
  margin-bottom: 24px;
  max-width: 640px;
}
.service-page__header { margin-bottom: 32px; }
.service-page__tables {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.service-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-packages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.package-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
}
.package-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}
.package-card li {
  font-size: .85rem;
  color: var(--gray-700);
  padding: 4px 0 4px 16px;
  position: relative;
}
.package-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gray-500);
}
.notice-box {
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .875rem;
  color: #7a5c00;
  margin-bottom: 24px;
}
.service-page__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-empty { padding: 40px 0; }

.service-detail {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.service-detail__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px 20px;
  flex-wrap: wrap;
}
.service-detail__price {
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.service-detail__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.service-detail__text { color: var(--gray-700); max-width: 560px; }
.service-detail__prices {
  border-top: 1px solid var(--gray-100);
  padding: 8px 0;
}
.service-detail__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail__row:last-child { border-bottom: none; }
.service-detail__row span:last-child { font-weight: 600; white-space: nowrap; }

.prose { background: var(--gray-100); }
.prose__inner { max-width: 760px; }
.prose h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.prose h3 { font-size: 1.05rem; font-weight: 700; margin: 28px 0 12px; }
.prose p { color: var(--gray-700); margin-bottom: 16px; }
.prose a { color: var(--accent); font-weight: 500; }
.prose__cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contacts-info__text { color: var(--gray-700); margin: 12px 0 24px; }
.contacts-info__list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}
.contacts-info__list li > span:first-child { color: var(--gray-500); }
.contacts-info__list a:hover { color: var(--accent); }
.contacts-info__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}
.contacts-locations { background: var(--gray-100); padding-top: 0; }
.contacts-list { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.contact-card__address { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-card__time { font-size: .85rem; color: var(--gray-500); }
.contact-card__actions { display: flex; flex-wrap: wrap; gap: 8px; }

.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-500);
  padding: 20px;
  text-align: center;
  font-size: .9rem;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  animation: toast-in .3s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .prices__grid { grid-template-columns: 1fr; }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__promo { order: -1; }
  .promo-slider__tabs { grid-template-columns: repeat(2, 1fr); }
  .locations__panel { grid-template-columns: 1fr; height: auto; }
  .locations__sidebar { max-height: 320px; border-right: none; border-bottom: 1px solid var(--gray-300); }
  .locations__map-wrap { height: 400px; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .service-detail__head { flex-direction: column; }
  .service-page__layout { grid-template-columns: 1fr; }
  .service-page__sidebar { position: static; }
  .service-packages__grid { grid-template-columns: 1fr; }
  .service-catalog__head { flex-direction: column; }
  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
}

@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__logo-img {
    max-width: 40px;
  }
  .header__logo-text { display: none; }
}

@media (max-width: 640px) {
  .header__phone [data-phone] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    width: 100%;
  }
  .hero { padding-bottom: 48px; }
  .promo-slider__tabs { grid-template-columns: 1fr; }
  .promo-tab {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero__stat { min-width: 80px; }
  .section { padding: 60px 0; }
}

/* ── Montaj extras ── */
.hero__accent { color: var(--accent); }
.hero__label .hero__gold { color: var(--gold); }

.news__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
  padding: 28px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .12);
  color: var(--gray-700);
  text-align: left;
  text-decoration: none;
  transition: box-shadow .2s ease;
}
.news-card--clickable {
  cursor: pointer;
}
.news-card--clickable::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  background: currentColor;
  color: var(--gray-500);
  opacity: .7;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 84% 80%, 84% 28%, 20% 92%, 8% 80%, 72% 16%, 20% 16%);
}
.news-card:hover {
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .08);
}
.news-card:hover .news-card__title {
  color: var(--accent);
}
.news-card--clickable .news-card__title {
  padding-right: 16px;
}
.news-card__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 12px;
}
.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 24px;
}
.news-card__cat {
  display: inline-block;
  padding: 5px 14px 4px;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.2;
}
.news-card__date {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gray-500);
}
.news-card__media {
  display: block;
  overflow: hidden;
  border-radius: 3px;
}
.news-card__media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 150px;
  height: auto;
  object-fit: cover;
}

.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 24px;
}
.news-toolbar .works-page__meta {
  margin-bottom: 0;
}
.news-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--gray-700);
  text-decoration: none;
  white-space: nowrap;
}
.news-sort__value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 500;
}
.news-sort:hover .news-sort__value {
  color: var(--accent);
}
.news-sort__arrow {
  display: block;
  color: var(--accent);
  transition: transform .2s ease;
}
.news-sort__arrow.is-rotated {
  transform: rotate(180deg);
}

.news-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}
.news-page__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 16px;
}
.news-page__date {
  font-size: .9rem;
  color: var(--gray-500);
}
.news-page__cat {
  margin: 0;
}
.news-page__body {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 720px;
}
.news-page__back {
  display: inline-flex;
  margin-top: 8px;
}
.news-page__next-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-500);
  margin: 0 0 16px;
}
.news-page__next .news-card {
  width: 100%;
}

.news-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.news-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  transition: border-color var(--transition);
}
.news-gallery__item:hover { border-color: var(--accent); }
.news-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .news-card { width: calc((100% - 20px) / 2); }
  .news-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .news-card {
    width: 100%;
  }
  .news-sort {
    font-size: .9rem;
  }
}

.contacts-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  height: 480px;
  min-height: 400px;
}
.contacts-map iframe,
.contacts-map script + div,
.contacts-map > ymaps,
.contacts-map > div {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.cta__departments-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 8px;
}
.cta__all-contacts {
  margin-top: 24px;
}
.departments-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.departments-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}
.departments-list li > span:first-child { color: var(--gray-500); }
.departments-list a:hover { color: var(--accent); }

.service-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card--link:hover .service-card__link { text-decoration: underline; }

.works-page__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.works-page__nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ecece8;
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .08);
  max-height: calc(100vh - var(--header-h) - 48px);
  display: flex;
  flex-direction: column;
}
.works-page__nav:not(.products-nav) {
  overflow-y: auto;
}
.products-nav .products-search {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 2;
}
.products-nav__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}
.products-nav__group {
  border-bottom: 1px solid #f0f0ec;
}
.products-nav__group:last-child { border-bottom: none; }
.products-nav__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  border: none;
  background: var(--white);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray-700);
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.products-nav__toggle:hover,
.products-nav__toggle.is-current {
  background: #fafaf7;
  color: var(--dark);
}
.products-nav__group.is-open .products-nav__toggle {
  background: #f6faf1;
  color: var(--dark);
}
.products-nav__toggle-text {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
}
.products-nav__toggle-text:hover {
  color: var(--accent);
}
.products-nav__toggle-meta {
  flex-shrink: 0;
  min-width: 22px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f5f5f2;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
}
.products-nav__group.is-open .products-nav__toggle-meta {
  background: var(--white);
  color: var(--gray-700);
}
.products-nav__chevron-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: -6px -8px -6px 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.products-nav__chevron {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-top: -3px;
  opacity: .7;
}
.products-nav__group.is-open .products-nav__chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.products-nav__panel {
  display: none;
  background: var(--white);
}
.products-nav__group.is-open .products-nav__panel {
  display: block;
}
.products-nav__panel .works-page__nav-item:last-child {
  border-bottom: none;
}
.works-page__nav-item {
  display: block;
  width: 100%;
  padding: 14px 18px;
  text-align: left;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  border: none;
  border-bottom: 1px solid #f0f0ec;
  background: var(--white);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.works-page__nav-item:last-child { border-bottom: none; }
.works-page__nav-item:hover,
.works-page__nav-item.is-active {
  background: #f6faf1;
  color: var(--dark);
}
.works-page__nav-item.is-active {
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--accent);
}
.works-page__nav-footer {
  padding: 16px 18px;
  background: #fafaf7;
  border-top: 1px solid #f0f0ec;
}
.works-page__content p { margin-bottom: 16px; }
.works-page__content .link-arrow {
  margin-top: 12px;
}
.works-page__categories {
  margin-top: 40px;
  margin-bottom: 32px;
}
.works-page__content + .objects-grid,
.works-page__content + .works-objects__empty {
  margin-top: 40px;
}
.works-page__content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 12px;
}
.works-page__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.works-page__list li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: var(--gray-700);
  font-size: .95rem;
}
.works-page__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.works-page__meta {
  color: var(--gray-500);
  margin-bottom: 24px;
}
.works-objects {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.works-objects__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 24px;
  padding: 14px 20px;
  background: var(--gray-100);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
}
.works-objects__head span:last-child {
  text-align: right;
}
.works-objects__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.works-objects__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 24px;
  padding: 14px 20px;
  border-top: 1px solid var(--gray-100);
  align-items: baseline;
}
.works-objects__item:hover {
  background: var(--accent-soft);
}
.works-objects__title {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  transition: color var(--transition);
  min-width: 0;
}
.works-objects__title:hover {
  color: var(--accent);
}
.works-objects__region {
  font-size: .9rem;
  color: var(--gray-700);
  text-align: right;
  white-space: nowrap;
}
.works-objects__empty {
  color: var(--gray-500);
}
@media (max-width: 640px) {
  .works-objects__head,
  .works-objects__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .works-objects__head span:last-child {
    display: none;
  }
  .works-objects__region {
    text-align: left;
    white-space: normal;
  }
}

.about-content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.65;
}
.about-block__body a {
  color: var(--accent);
  font-weight: 600;
}
.about-block__body strong { font-weight: 700; }
.about-block__body em { font-style: italic; }
.about-block__body h2,
.about-block__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 12px;
}
.about-block__body ul,
.about-block__body ol {
  margin: 0 0 16px;
  padding: 0;
}
.about-block__body ul {
  list-style: none;
}
.about-block__body ol {
  list-style: decimal;
  padding-left: 1.2em;
  color: var(--gray-700);
}
.about-block__body li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: var(--gray-700);
  font-size: .95rem;
}
.about-block__body ol li {
  padding-left: 0;
}
.about-block__body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.about-block { margin-top: 32px; }
.about-block:first-of-type { margin-top: 0; }
.about-block__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}
.about-gallery__item {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-gallery__item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-slider {
  margin: 24px 0 8px;
  min-width: 0;
}
.about-slider__viewport {
  position: relative;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4 / 3;
  touch-action: pan-y;
}
.about-slider__track {
  position: absolute;
  inset: 0;
}
.about-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s;
}
.about-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.about-slider__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.about-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.about-slider__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.about-slider__arrow--prev { left: 12px; }
.about-slider__arrow--next { right: 12px; }
.about-slider__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.about-slider__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  opacity: .7;
  transition: border-color var(--transition), opacity var(--transition);
}
.about-slider__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-slider__thumb:hover {
  opacity: 1;
  border-color: var(--gray-500);
}
.about-slider__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}
.about-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 180px;
  padding: 16px 14px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-partner:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.about-partner img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
}
.about-partner__cat {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  line-height: 1.2;
}
.about-partner__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
}
@media (max-width: 640px) {
  .about-partner { width: calc(50% - 6px); }
}

/* ── Products ── */
.products-search {
  padding: 16px;
  border-bottom: 1px solid #f0f0ec;
  background: var(--white);
}
.products-search input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ecece8;
  border-radius: 4px;
  font-size: .9rem;
  outline: none;
  background: #fafaf7;
  transition: border-color var(--transition), background var(--transition);
}
.products-search input:focus {
  border-color: var(--accent);
  background: var(--white);
}
.products-nav .works-page__nav-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.products-nav__count {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-500);
}
.products-overview__grid,
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.products-cat-card,
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc((100% - 40px) / 3);
  padding: 0 0 20px;
  overflow: hidden;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .12);
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .2s ease;
}
.products-cat-card::after,
.product-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: currentColor;
  color: var(--gray-500);
  opacity: .7;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 84% 80%, 84% 28%, 20% 92%, 8% 80%, 72% 16%, 20% 16%);
}
.products-cat-card:hover,
.product-card:hover {
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .08);
}
.products-cat-card:hover .products-cat-card__title,
.product-card:hover .product-card__title {
  color: var(--accent);
}
.products-cat-card__media,
.product-card__media {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--white);
}
.products-cat-card__media img,
.product-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  font-size: .85rem;
  color: var(--gray-500);
}
.products-cat-card__title,
.product-card__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
  padding: 16px 20px 0;
}
.products-cat-card__count {
  font-size: .875rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gray-500);
  padding: 8px 20px 0;
}
.product-card__cat {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px 4px;
  margin: 8px 20px 0;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.2;
}
.products-category__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}
.product-page__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.product-page__info:only-child {
  grid-column: 1 / -1;
  max-width: 640px;
}
.product-page__desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-page__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
}
.product-page__attrs {
  width: 100%;
  margin: 4px 0 0;
  border-top: 1px solid var(--gray-300);
}
.product-page__attr {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-300);
}
.product-page__attr dt {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-500);
  line-height: 1.4;
}
.product-page__attr dd {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--dark);
}
.product-slider {
  min-width: 0;
}
.product-slider__viewport {
  position: relative;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  aspect-ratio: 1;
  touch-action: pan-y;
}
.product-slider__track {
  position: absolute;
  inset: 0;
}
.product-slider__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s;
}
.product-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.product-slider__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.product-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.product-slider__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.product-slider__arrow--prev { left: 12px; }
.product-slider__arrow--next { right: 12px; }
.product-slider__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.product-slider__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  opacity: .7;
  transition: border-color var(--transition), opacity var(--transition);
}
.product-slider__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.product-slider__thumb:hover {
  opacity: 1;
  border-color: var(--gray-500);
}
.product-slider__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}
.product-page__exec {
  margin-top: 48px;
}
.product-page__exec .section__title {
  margin-bottom: 20px;
}
.product-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  line-height: 1.4;
}
.product-table th,
.product-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--gray-300);
}
.product-table thead th {
  background: var(--dark);
  color: var(--white);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: none;
}
.product-table tbody td {
  color: var(--gray-900);
  background: var(--white);
}
.product-table tbody tr:nth-child(even) td {
  background: #fbfcfe;
}
.product-table tbody tr:hover td {
  background: var(--accent-soft);
}
.product-table th:first-child,
.product-table td:first-child {
  position: sticky;
  left: 0;
  font-weight: 600;
  white-space: nowrap;
  z-index: 1;
}
.product-table thead th:first-child {
  z-index: 2;
}
.product-table th:last-child,
.product-table td:last-child {
  border-right: none;
}
.product-table tbody tr:last-child td {
  border-bottom: none;
}
.product-page__back {
  display: inline-flex;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .products-cat-card,
  .product-card {
    width: calc((100% - 20px) / 2);
  }
  .product-page {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .products-cat-card,
  .product-card {
    width: 100%;
  }
  .product-page__attr {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 1024px) {
  .works-page__layout { grid-template-columns: 1fr; }
  .works-page__nav { position: static; }
}

/* ── Objects ── */
.page-hero--object {
  padding-bottom: 32px;
}
.object-page__region {
  margin-top: 4px;
  font-size: .95rem;
  color: var(--gray-700);
}
.object-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.object-page__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--dark);
  font-size: .78rem;
  font-weight: 600;
  transition: background var(--transition);
}
.object-page__tag:hover { background: #dff0d3; }
.object-page__desc {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 760px;
}
.object-page__no-photo {
  color: var(--gray-500);
  margin-bottom: 24px;
}
.object-page__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
}
.object-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.object-gallery__item {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  cursor: zoom-in;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.object-gallery__item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.object-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.object-lightbox__dialog {
  position: relative;
  max-width: min(960px, 92vw);
  padding: 48px 56px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.object-lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.object-lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 720px);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.object-lightbox__counter {
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
}
.object-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}
.object-lightbox__nav:hover { background: var(--white); }
.object-lightbox__nav--prev { left: 0; }
.object-lightbox__nav--next { right: 0; }
.object-lightbox .modal__close {
  top: 0;
  right: 0;
  color: var(--white);
  background: rgba(0, 0, 0, .35);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.objects-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.objects-search {
  flex: 1;
  min-width: 240px;
  max-width: 420px;
}
.objects-search input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
}
.objects-search input:focus { border-color: var(--accent); }
.objects-page__meta {
  color: var(--gray-500);
  font-size: .9rem;
}
.objects-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.objects-filter {
  padding: 8px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--white);
  color: var(--gray-700);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.objects-filter:hover {
  border-color: var(--accent);
  color: var(--dark);
}
.objects-filter.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--dark);
  font-weight: 600;
}
.objects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.object-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: calc((100% - 40px) / 3);
  padding: 22px 28px 22px 24px;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .12);
  transition: box-shadow .2s ease;
}
.object-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  background: currentColor;
  color: var(--gray-500);
  opacity: .7;
  clip-path: polygon(20% 0, 100% 0, 100% 80%, 84% 80%, 84% 28%, 20% 92%, 8% 80%, 72% 16%, 20% 16%);
}
.object-card:hover {
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .08);
}
.object-card:hover .object-card__title {
  color: var(--accent);
}
.object-card__media {
  flex: 0 0 77px;
  width: 77px;
  height: 77px;
  margin-right: 20px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .12);
}
.object-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.object-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gray-500);
  font-size: .7rem;
  text-align: center;
  padding: 6px;
}
.object-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 12px;
}
.object-card__title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 4px;
}
.object-card__region {
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--gray-700);
}

@media (max-width: 1024px) {
  .object-card { width: calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .object-card { width: 100%; }
  .object-lightbox__dialog { padding: 40px 12px; }
  .object-lightbox__nav { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* ── Machinery ── */
.machinery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.machinery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((100% - 40px) / 3);
  padding: 28px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 2px 2px 16px rgba(29, 29, 27, .12);
  color: inherit;
  text-align: left;
}
.machinery-card--rent {
  background: var(--accent-soft);
}
.machinery-card__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark);
  margin: 0 0 16px;
}
.machinery-card__text {
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.5;
  margin: 0 0 16px;
}
.machinery-card__phone {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.machinery-card__phone:hover { color: var(--accent); }
.machinery-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--white);
}
.machinery-card__media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.machinery-card__placeholder {
  color: var(--gray-500);
  font-size: .7rem;
}
.machinery-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.machinery-card__specs li {
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--gray-700);
}
.machinery-card__request {
  margin-top: auto;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 1024px) {
  .machinery-card { width: calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .machinery-card { width: 100%; }
}

/* ── Objects map2 (pin map) ── */
.objects-map2 {
  position: relative;
  z-index: 1;
  margin-top: var(--header-h);
  height: min(48vh, 480px);
  min-height: 320px;
  background: var(--gray-100);
}
.objects-map2__canvas {
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #e1e3e4;
  position: absolute;
  inset: 0;
}
.objects-map2 .mapboxgl-canvas {
  outline: none;
}
.objects-map2 .mapboxgl-ctrl-group {
  border: none !important;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.objects-map2 .mapboxgl-ctrl-logo {
  display: none !important;
}
.objects-map2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--white) 100%);
  pointer-events: none;
  z-index: 3;
}
.map2-pin {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 6px solid #7ac943;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(122, 201, 67, .28), 0 2px 4px rgba(0, 0, 0, .18);
}
.map2-pin:hover {
  transform: scale(1.12);
}
.map2-popup-wrap .mapboxgl-popup-content {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: var(--font);
}
.map2-popup-wrap .mapboxgl-popup-close-button {
  display: none;
}
.objects-map2__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  padding: 20px 0 16px;
}
.objects-map2__overlay .breadcrumbs {
  pointer-events: auto;
}
.objects-map2__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.objects-map2__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}
.objects-map2__text {
  max-width: 36rem;
  margin: 0 0 8px;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--gray-700);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .6);
}
.objects-map2__meta {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}
.objects-map2__filters-wrap {
  margin-bottom: 20px;
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent);
}
.objects-map2__filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: 28px;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}
.objects-map2__filters.is-dragging {
  cursor: grabbing;
}
.objects-map2__filters.is-dragging .objects-filter {
  pointer-events: none;
}
.objects-map2__filters::-webkit-scrollbar {
  display: none;
}
.objects-map2__filters .objects-filter {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--white);
}
.map2-popup__title {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.35;
}
.map2-popup__title:hover { color: var(--accent); }
.map2-popup__title:focus,
.map2-popup__title:focus-visible {
  outline: none;
}
.map2-popup__place {
  margin-top: 4px;
  font-size: .8rem;
  color: var(--gray-500);
}
.map2-error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.5;
  z-index: 2;
}
.map2-error code {
  font-size: .85em;
  background: rgba(255, 255, 255, .8);
  padding: 2px 6px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .objects-map2 {
    height: 40vh;
    min-height: 280px;
  }
  .objects-map2__overlay { padding-top: 20px; }
}
.objects-map2-list {
  position: relative;
  z-index: 4;
  padding-top: 8px;
  padding-bottom: 24px;
  margin-top: -12px;
}
.objects-map2-note {
  margin: 28px 0 0;
  font-size: .7rem;
  line-height: 1.45;
  color: var(--gray-500);
}
.objects-map2-note span { color: #e53935; }
