:root {
  --ink: #151515;
  --muted: #5f6268;
  --faint: #8a9098;
  --line: #dbdfe4;
  --soft: #f4f5f6;
  --panel: #ffffff;
  --canvas: #eaecef;
  --accent: #f47a12;
  --accent-strong: #d95f00;
  --ring: #e4c4a4;
  --blueprint: #253b56;
  --shadow: 0 18px 48px rgba(21, 21, 21, 0.12);
  --shadow-sm: 0 6px 18px rgba(21, 21, 21, 0.06);
  --radius: 8px;
  --sidebar-width: 282px;
  --topbar-height: 132px;

  /* spacing scale */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Manrope", Arial, "Helvetica Neue", Helvetica, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(244, 122, 18, 0.55);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(270px, 380px) minmax(340px, 1fr) minmax(210px, 280px) auto;
  align-items: center;
  gap: 20px;
  min-height: var(--topbar-height);
  padding: 12px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  height: 108px;
  width: auto;
  max-width: 168px;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 6px 10px;
}

.brand > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand strong {
  font-family: "Montserrat", "Manrope", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* двухцветный логотип-текст: ВОЛ — чёрный (наследует), ПРОМ — оранжевый */
.brand strong .brand-w2 {
  color: var(--accent);
}

.brand small {
  max-width: 220px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.topbar__contacts,
.topbar__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.topbar__contacts {
  display: grid;
  justify-items: start;
  gap: 5px;
}

.topbar__phones,
.topbar__contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
}

.topbar__contacts a {
  color: var(--ink);
  font-weight: 700;
}

.topbar__contacts a[href^="tel:"] {
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.topbar__contacts .topbar__address {
  color: var(--faint);
}

.max-messenger {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  vertical-align: middle;
}

.max-messenger img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.max-messenger--inactive {
  cursor: default;
  opacity: 0.78;
}

.legal-page__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 14px;
}

.topbar__legal {
  justify-content: flex-start;
  border-left: 2px solid var(--line);
  padding-left: 14px;
  color: var(--faint);
  font-size: 12px;
}

.topbar__legal strong {
  flex-basis: 100%;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}

.mobile-call {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.menu-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.page-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  align-items: start;
}

.sidebar {
  position: sticky;
  top: var(--topbar-height);
  height: calc(100vh - var(--topbar-height));
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: #fff;
}

.side-nav {
  display: grid;
  gap: 0;
  padding: 14px;
}

.side-nav__label {
  padding: 9px 12px 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.side-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 12px;
  border-bottom: 1px solid #eceff2;
  border-radius: var(--radius);
  color: #33383e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.side-nav a:hover,
.side-nav a.is-active {
  background: #fff4eb;
  color: var(--accent-strong);
}

.side-nav a.is-active {
  box-shadow: inset 3px 0 0 var(--accent);
}

main {
  min-width: 0;
}

.hero-section,
.content-section {
  scroll-margin-top: calc(var(--topbar-height) + 22px);
}

.hero-section {
  min-height: calc(100vh - var(--topbar-height));
  padding: 16px clamp(22px, 4vw, 58px) 24px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 18, 0.1), transparent 42%),
    var(--canvas);
}

.hero-section__intro {
  display: grid;
  gap: 6px;
  max-width: 1120px;
}

.eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.hero-section h1 {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1;
  white-space: nowrap;
}

.hero-section__intro p:last-child {
  max-width: 900px;
  margin-bottom: 0;
  color: #3c4046;
  font-size: 15px;
  line-height: 1.4;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 10px;
  max-width: 1120px;
  margin: 20px 0 0;
}

.hero-proof div,
.detail-highlights div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.hero-proof strong,
.detail-highlights strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-proof span,
.detail-highlights span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.action-link {
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.action-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.action-link--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.action-link--primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  gap: var(--s2) clamp(16px, 2vw, 28px);
  max-width: 1120px;
  margin-top: var(--s2);
}

.product-card {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 146px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.product-card:focus-visible .product-card__image,
.product-card:hover .product-card__image {
  border-color: var(--accent);
  box-shadow: 0 16px 30px rgba(244, 122, 18, 0.2), 0 12px 22px rgba(21, 21, 21, 0.1);
}

.product-card__image {
  position: relative;
  width: min(100%, 100px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 2px solid var(--ring);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(21, 21, 21, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__title {
  max-width: 210px;
  min-height: 30px;
  margin: 0 auto;
  color: #202124;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-card__hint {
  width: fit-content;
  margin: -2px auto 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}

.product-card:hover .product-card__hint,
.product-card:focus-visible .product-card__hint {
  color: var(--accent-strong);
}

.product-card__hint::after {
  content: " →";
}

.work-strip {
  position: relative;
  max-width: 1120px;
  margin: var(--s5) 0 var(--s4);
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.work-strip__track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 8px 0;
  animation: stripMove 40s linear infinite;
}

.work-strip__item {
  display: block;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: zoom-in;
}

.work-strip:hover .work-strip__track {
  animation-play-state: paused;
}

.work-strip__track img {
  width: 104px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.82) brightness(0.98);
  transition: filter 200ms ease;
}

.work-strip__item:hover img {
  filter: saturate(1) brightness(1);
}

@keyframes stripMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.motto {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.motto b {
  color: var(--accent);
  font-weight: 800;
}

.content-stack {
  display: grid;
  gap: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--accent-strong);
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 8px;
  color: #9aa0a6;
}

.content-section {
  display: grid;
  gap: 28px;
  padding: clamp(32px, 4vw, 64px) clamp(22px, 4vw, 62px);
  background: transparent;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.section-head h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.product-detail .section-head h1,
.section-detail .section-head h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 10px;
  max-width: 820px;
  margin-top: 6px;
}

.section-head p {
  max-width: 820px;
  margin-bottom: 0;
  color: #3b3f45;
  font-size: 17px;
  line-height: 1.65;
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 1.05fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.section-layout--text-only {
  grid-template-columns: minmax(0, 780px);
}

.section-detail .section-layout,
.section-layout--portfolio {
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
}

.section-copy {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.section-copy p {
  margin-bottom: 0;
  color: #3b3f45;
  font-size: 16px;
  line-height: 1.7;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #343941;
  font-size: 13px;
  font-weight: 600;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.quote-cta {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  width: 100%;
  margin-top: 6px;
  padding: 18px 20px;
  border: 1px solid #f0c49d;
  border-radius: var(--radius);
  background: #fff7ef;
  box-shadow: var(--shadow-sm);
}

.quote-cta__copy {
  display: grid;
  gap: 4px;
  max-width: 620px;
}

.quote-cta__copy strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.quote-cta__copy span {
  color: #3b3f45;
  font-size: 14px;
  line-height: 1.4;
}

.quote-cta__actions {
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-top: 0;
}

.quote-cta__actions .action-link {
  white-space: nowrap;
}

.back-link {
  width: fit-content;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.related-section {
  gap: 16px;
  padding-block: clamp(28px, 3vw, 44px);
}

.related-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 20px;
  max-width: 1120px;
}

.related-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.related-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.related-all {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
}

.related-all:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-nav {
  display: flex;
  gap: 8px;
}

.related-nav__btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

.related-nav__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.related-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line);
}

.related-nav[hidden] {
  display: none;
}

.product-grid--related.related-track {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  max-width: 1120px;
  margin-top: 0;
  padding: 4px 2px 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-grid--related.related-track::-webkit-scrollbar {
  display: none;
}

.related-track:focus-visible {
  outline: 3px solid rgba(244, 122, 18, 0.55);
  outline-offset: 3px;
}

.product-grid--related .product-card {
  flex: 0 0 clamp(116px, 14vw, 138px);
  min-height: auto;
}

.product-grid--related .product-card__image {
  width: min(100%, 76px);
}

.product-grid--related .product-card__title {
  font-size: 12px;
}

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

.gallery--mosaic {
  grid-template-columns: minmax(180px, 1.15fr) repeat(2, minmax(120px, 1fr));
  grid-auto-rows: 150px;
}

.gallery button {
  min-height: 168px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.gallery button:hover {
  box-shadow: 0 16px 32px rgba(21, 21, 21, 0.14);
  transform: translateY(-2px);
}

.gallery button:first-child {
  grid-row: span 2;
}

.gallery--mosaic button {
  min-height: 0;
}

.gallery--mosaic button:first-child {
  grid-column: 1;
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery button:hover img {
  transform: scale(1.035);
}

.article-index,
.article-detail,
.article-related {
  max-width: 1240px;
  margin-inline: auto;
}

.article-index__head,
.article-detail__head,
.article-section-head {
  display: grid;
  gap: 10px;
}

.article-index__head {
  max-width: 850px;
}

.article-index__head h1,
.article-detail__head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-index__head > p:last-child,
.article-detail__head > p:last-child {
  max-width: 850px;
  margin: 0;
  color: #3b3f45;
  font-size: 18px;
  line-height: 1.6;
}

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

.article-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8eaed;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.article-card:hover .article-card__image img {
  transform: scale(1.025);
}

.article-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.article-card__type {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0;
}

.article-card h2 a {
  color: inherit;
}

.article-card p {
  margin: 0;
  color: #4c5158;
  font-size: 14px;
  line-height: 1.55;
}

.article-card__link {
  margin-top: auto;
  padding-top: 8px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-cover {
  width: 100%;
  aspect-ratio: 5 / 2;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #e8eaed;
  cursor: zoom-in;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-reading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.article-body {
  display: grid;
  gap: 36px;
  max-width: 760px;
}

.article-body__section {
  display: grid;
  gap: 14px;
}

.article-body__section h2,
.article-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
}

.article-body__section p {
  margin: 0;
  color: #343941;
  font-size: 17px;
  line-height: 1.75;
}

.article-highlights {
  position: sticky;
  top: calc(var(--topbar-height) + 24px);
  display: grid;
  gap: 14px;
  padding: 22px;
  border-top: 4px solid var(--accent);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-highlights strong {
  color: var(--ink);
  font-size: 18px;
  text-transform: uppercase;
}

.article-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-highlights li {
  position: relative;
  padding-left: 18px;
  color: #3b3f45;
  font-size: 14px;
  line-height: 1.45;
}

.article-highlights li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.article-gallery-block {
  display: grid;
  gap: 18px;
}

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

.gallery--article button,
.gallery--article button:first-child {
  min-height: 0;
  aspect-ratio: 4 / 3;
  grid-row: auto;
}

.article-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding-block: 20px;
  border-block: 1px solid var(--line);
}

.article-links strong {
  color: var(--ink);
  text-transform: uppercase;
}

.article-links a {
  color: var(--accent-strong);
  font-weight: 700;
}

.article-grid--related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}

.client-trust__lead {
  max-width: 720px;
  margin: -4px 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.client-card {
  display: grid;
  grid-template-rows: 86px 36px;
  align-items: center;
  height: 154px;
  min-width: 0;
  padding: 15px 12px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.client-card__logo {
  display: grid;
  width: 100%;
  min-width: 0;
  height: 78px;
  place-items: center;
  overflow: hidden;
}

.client-card img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  transform: scale(var(--client-logo-scale, 1));
  transform-origin: center;
}

.client-card__name {
  display: grid;
  min-width: 0;
  height: 36px;
  place-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

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

.award-card {
  display: grid;
  aspect-ratio: 4 / 3;
  min-height: 0;
  min-width: 0;
  border: 1px solid var(--line);
  cursor: zoom-in;
  overflow: hidden;
  padding: clamp(16px, 2.3vw, 28px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.award-card:hover {
  box-shadow: 0 16px 32px rgba(21, 21, 21, 0.14);
  transform: translateY(-2px);
}

.award-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.award-card img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.note-panel {
  padding: 18px;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  background: #fff7ef;
  color: #3b3f45;
  font-size: 15px;
  line-height: 1.6;
}

.proof-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-item,
.contact-item {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.proof-item strong,
.contact-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.proof-item span,
.contact-item span,
.contact-item a {
  color: #272b31;
  font-size: 15px;
  line-height: 1.45;
}

.contact-item a {
  font-weight: 800;
}

.contact-item--phones a {
  display: block;
}

.contact-item--phones a + a {
  display: inline-block;
  margin-top: 4px;
}

.contact-item--phones > .max-messenger {
  margin-left: 8px;
}

.map-shell {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 1px 1px, rgba(37, 59, 86, 0.12) 1px, transparent 0);
  background-size: auto, 18px 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 14, 17, 0.78);
  overflow-y: auto;
}

.quote-modal[hidden] {
  display: none;
}

.quote-open {
  overflow: hidden;
}

.quote-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  overflow-y: auto;
}

.quote-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.quote-dialog__head {
  padding-right: 48px;
}

.quote-dialog__head h2 {
  margin: 2px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.quote-dialog__head > p:last-child {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.45;
}

#quoteForm,
#quoteForm label {
  display: grid;
  gap: 7px;
}

#quoteForm {
  gap: 14px;
}

#quoteForm label {
  color: #30343a;
  font-size: 13px;
  font-weight: 800;
}

#quoteForm input,
#quoteForm textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid #cbd0d6;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  letter-spacing: 0;
}

#quoteForm input:focus,
#quoteForm textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(244, 122, 18, 0.18);
}

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

.quote-form__consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 500 !important;
  line-height: 1.4;
}

.quote-form__consent input {
  width: 18px !important;
  margin-top: 2px;
}

.quote-form__consent a,
.legal-page a {
  color: #c94f00;
}

.legal-page {
  margin: 0;
  color: #171717;
  background: #f4f5f6;
  font-family: Arial, sans-serif;
}

.legal-page__header {
  min-height: 76px;
  padding: 10px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9dde1;
  background: #fff;
}

.legal-page__header > a:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #171717;
  text-decoration: none;
  font-size: 22px;
}

.legal-page__header span {
  color: #ed6500;
}

.legal-page__content {
  width: min(820px, calc(100% - 32px));
  margin: 40px auto 72px;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid #d9dde1;
  background: #fff;
}

.legal-page__content h1 {
  margin: 8px 0 28px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
}

.legal-page__content h2 {
  margin: 28px 0 8px;
  font-size: 20px;
}

.legal-page__content p {
  color: #4c5158;
  line-height: 1.65;
}

.legal-page__updated {
  margin: 32px 0;
  font-size: 13px;
}

.quote-form__honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form__submit {
  justify-content: center;
  width: 100%;
}

.quote-form__submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.quote-form__status {
  min-height: 22px;
  margin: 0;
  color: #3b3f45;
  font-size: 14px;
  line-height: 1.45;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.map-fallback {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  gap: 8px;
  max-width: min(380px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.12);
}

.map-fallback strong {
  color: var(--accent-strong);
  font-size: 13px;
  text-transform: uppercase;
}

.map-fallback span {
  color: #272b31;
  font-size: 15px;
  line-height: 1.45;
}

.map-fallback a {
  width: fit-content;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(10, 12, 16, 0.86);
}

.lightbox figure {
  display: grid;
  gap: 12px;
  max-width: min(1120px, 94vw);
  max-height: 92vh;
  margin: 0;
}

.lightbox img {
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox figcaption {
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  display: none;
  width: 58px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 58px;
  line-height: 0.8;
  transform: translateY(-50%);
  cursor: pointer;
}

.lightbox.is-carousel .lightbox__nav {
  display: grid;
  place-items: center;
}

.lightbox__nav--prev {
  left: 22px;
}

.lightbox__nav--next {
  right: 22px;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(244, 122, 18, 0.82);
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: minmax(210px, 1fr) minmax(280px, 1fr) auto;
  }

  .topbar__legal {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(132px, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 92px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    min-height: var(--topbar-height);
    padding: 9px 14px;
  }

  .brand img {
    height: 62px;
    width: auto;
    max-width: 104px;
    padding: 4px 6px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    max-width: 180px;
    font-size: 12px;
  }

  .topbar__contacts {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-call {
    display: inline-flex;
  }

  .page-shell {
    display: block;
  }

  .sidebar {
    position: fixed;
    inset: var(--topbar-height) auto 0 0;
    z-index: 40;
    width: min(86vw, 330px);
    height: auto;
    transform: translateX(-105%);
    transition: transform 180ms ease;
    box-shadow: var(--shadow);
  }

  body.nav-open .sidebar {
    transform: translateX(0);
  }

  .hero-section {
    min-height: auto;
    padding-top: 28px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-section h1 {
    white-space: normal;
  }

  .hero-section__intro p:last-child {
    font-size: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    gap: 22px 14px;
  }

  .product-card {
    min-height: 206px;
  }

  .product-card__image {
    width: min(100%, 148px);
    border-width: 5px;
  }

  .product-card__title {
    font-size: 12px;
  }

  .section-layout {
    grid-template-columns: 1fr;
  }

  .quote-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .quote-cta__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .quote-cta__actions .action-link {
    width: 100%;
  }

  .quote-cta__actions .action-link--primary {
    grid-column: 1 / -1;
  }

  .section-detail .section-layout,
  .section-layout--portfolio {
    grid-template-columns: 1fr;
  }

  .gallery--mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .product-detail .gallery--mosaic {
    order: -1;
  }

  .proof-grid,
  .contacts-grid,
  .detail-highlights {
    grid-template-columns: 1fr;
  }

  .gallery button {
    min-height: 132px;
  }

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

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

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

  .article-reading-layout {
    grid-template-columns: 1fr;
  }

  .article-highlights {
    position: static;
    order: -1;
  }

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

@media (max-width: 520px) {
  .quote-modal {
    align-items: end;
    padding: 0;
  }

  .quote-dialog {
    width: 100%;
    max-height: 94vh;
    padding: 22px 18px;
    border-radius: 6px 6px 0 0;
  }

  .quote-form__row {
    grid-template-columns: 1fr;
  }

  .hero-section,
  .content-section {
    padding-inline: 16px;
  }

  .quote-cta {
    padding: 16px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-proof div,
  .detail-highlights div {
    min-height: 74px;
    padding: 12px;
  }

  h1 {
    font-size: 36px;
  }

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

  .product-card {
    min-height: 188px;
  }

  .product-card__image {
    width: min(100%, 130px);
  }

  .work-strip__track img {
    width: 112px;
    height: 76px;
  }

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

  .gallery--mosaic {
    grid-template-columns: 1fr;
  }

  .gallery button:first-child {
    grid-row: auto;
  }

  .gallery--mosaic button:first-child {
    grid-row: auto;
  }

  .article-grid,
  .article-grid--related {
    grid-template-columns: 1fr;
  }

  .article-index__head h1,
  .article-detail__head h1 {
    font-size: 34px;
  }

  .article-cover {
    aspect-ratio: 4 / 3;
  }

  .article-body__section p {
    font-size: 16px;
  }

  .gallery--article {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 42px;
    transform: none;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .work-strip__track {
    animation: none;
  }

  .product-card__image img,
  .gallery img {
    transition: none;
  }

  .product-grid--related.related-track {
    scroll-behavior: auto;
  }
}
