:root {
  --master-ink: #171a1e;
  --workbench: #25282c;
  --steel: #c8c9ca;
  --paper: #f4f3f1;
  --signal-red: rgb(227, 12, 23);
  --smoke: #8c8e91;
  --control-radius: 2px;
  --screen-pixel: 1px;
  --button-outline-width: var(--screen-pixel);
  --timeline-bullet-size: 5px;
  --service-card-shadow-active:
    0 2px 4px rgba(10, 12, 14, .21),
    0 12px 26px rgba(10, 12, 14, .28);
  --service-card-shadow-hover:
    0 3px 6px rgba(10, 12, 14, .23),
    0 16px 34px rgba(10, 12, 14, .35);
}

* { box-sizing: border-box; }

.hours-table {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 20px;
  row-gap: 0;
}

.hours-row { display: contents; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--master-ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
.location-link {
  text-decoration: underline;
  text-decoration-color: var(--signal-red);
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.location-link:hover,
.location-link:focus-visible { color: var(--signal-red); }

h1, h2, h3, h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 1.2em;
}

.button {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 49px;
  padding: 0 27px;
  display: flex;
  align-items: center;
  color: white;
  background: #13161a;
}

.wordmark {
  display: block;
  line-height: 0;
}

.wordmark img {
  display: block;
  width: 130px;
  height: auto;
}

.menu-toggle { display: none; }

.site-nav {
  position: absolute;
  left: 231px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 9px;
  white-space: nowrap;
}

.site-nav a,
.nav-dropdown-toggle { transition: color .2s ease; }

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible { color: var(--signal-red); }

.site-nav > a[aria-current="page"] { color: var(--signal-red); }

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 10px 0;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 6px;
  transition: transform .2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -12px;
  min-width: 164px;
  padding: 7px;
  border-top: 2px solid var(--signal-red);
  background: #1c2025;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 9px;
  color: white;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: white;
  background: var(--signal-red);
  outline: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i { transform: rotate(180deg); }

.language-switch {
  position: absolute;
  right: 129px;
  width: 38px;
  height: 34px;
  margin: 0;
  border: 0;
  border-radius: var(--control-radius);
  background: transparent;
  color: white;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font: inherit;
  font-size: 8px;
  text-decoration: none;
  cursor: pointer;
}

.language-switch-icon {
  width: 14px;
  height: 14px;
  box-sizing: content-box;
  padding: 3px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-switch:hover,
.language-switch:focus-visible { color: var(--signal-red); }

.header-phone {
  position: absolute;
  right: 29px;
  width: 97px;
  padding: 8px 8px;
  border: var(--button-outline-width) solid currentColor;
  border-radius: var(--control-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 11px;
}

.header-phone span { color: var(--signal-red); }

.header-phone-icon {
  display: block;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  align-self: center;
  margin: 0;
}

@media (max-width: 900px) {
  html { scroll-padding-top: 64px; }

  .site-header {
    position: sticky;
    top: 0;
    height: 64px;
    padding: 0 16px;
    gap: 12px;
  }

  .site-header > .wordmark {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .menu-toggle {
    order: 5;
    display: grid;
    place-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    margin-left: 0;
    padding: 0;
    border: 1px solid #4b4e51;
    border-radius: var(--control-radius);
    color: white;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 18px;
    border-top: 1px solid #34373a;
    background: #13161a;
    font-size: 15px;
    white-space: normal;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
  }

  .site-nav.is-open { display: grid; }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    padding: 12px 2px;
    border-bottom: 1px solid #34373a;
    text-align: left;
  }

  .nav-dropdown-toggle { justify-content: space-between; }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 8px 14px;
    border-top: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu a {
    min-height: 44px;
    padding: 12px 8px;
    color: #d7d8d9;
  }

  .language-switch {
    position: static;
    order: 3;
    margin-left: auto;
    padding: 0;
    font-size: 12px;
    min-height: 44px;
  }

  .language-switch-icon { width: 18px; height: 18px; }

  .header-phone {
    position: static;
    order: 4;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: white;
    font-size: 0;
    line-height: 0;
  }

  .header-phone-icon {
    display: block;
    width: 17px;
    height: 17px;
    margin: 0;
  }

  .header-phone span { display: none; }
}

.hero { position: absolute; inset: 49px 0 auto; height: 423px; overflow: hidden; color: white; }

.placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,.08) 49%, rgba(255,255,255,.08) 51%, transparent 52%),
    radial-gradient(circle at 25% 25%, #565b60 0 2px, transparent 2.5px),
    linear-gradient(145deg, #303439, #15181c 70%);
  background-size: auto, 18px 18px, auto;
}

.placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.18);
}

.placeholder > span {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,.5);
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
}

.placeholder--hero {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/chei-atelier-echilibrat.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.placeholder--hero::after,
.placeholder--hero > span { display: none; }
.hero-shade, .contact-shade { position: absolute; inset: 0; background: linear-gradient(rgba(7,9,11,.1) 25%, rgba(7,9,11,.24) 45%, #111419 100%); }

.hero-copy { position: absolute; left: 95px; right: 74px; bottom: 61px; text-align: center; }
.hero h1 { margin: 0; font-size: 35px; letter-spacing: -.7px; transform: scaleX(.96); }
.hero p {
  margin: 11px 0 12px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}
.hero-actions { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 12px; width: auto; margin: 0 auto; }
.hero-actions .button--outline {
  border: 0;
  text-decoration: none;
}
.hero-actions .button--outline span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-actions, .hero-location { position: relative; left: -14px; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 124px;
  min-height: 27px;
  padding: 7px 15px;
  border: 0;
  border-radius: var(--control-radius);
  text-transform: none;
  font-size: 13px;
  line-height: 1;
  transition: filter .2s ease, transform .2s ease;
}

.button i { margin-left: 10px; font-size: .88em; }
.button i:first-child { margin: 0 10px 0 0; }

.button:hover { filter: brightness(1.12); transform: translateY(-1px); }
.button--red { color: white; background: var(--signal-red); font-size: 11px; }
.button--outline { color: white; border: var(--button-outline-width) solid currentColor; }
.button--small { min-width: 143px; }

.text-link { display: inline-block; border-bottom: var(--screen-pixel) solid currentColor; font-size: 10px; }
.text-link--light { color: white; }
.text-link--red { color: var(--signal-red); }
.hero-location { margin-top: 9px; color: #a5a7aa; font-size: 10px; }
.hero-location i { margin-right: 4px; }
.hero-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.hero-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: var(--control-radius);
  color: white;
  background: rgba(17, 20, 25, .24);
  font-size: 15px;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}
.hero-social a:hover,
.hero-social a:focus-visible {
  border-color: var(--signal-red);
  outline: 0;
  color: var(--signal-red);
  background: rgba(17, 20, 25, .58);
  transform: translateY(-1px);
}

.section-light { background: var(--paper); }
.services { position: absolute; top: 472px; left: 0; width: 750px; height: 421px; padding: 17px 22px; }
.services h2, .split h2, .contact h2 {
  margin: 5px 0 7px;
  font-size: 31px;
  text-transform: uppercase;
  letter-spacing: -.8px;
}

.section-count { font-size: 11px; }
.section-count strong { color: var(--signal-red); }

.services > p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}
.services-link { position: absolute; top: 116px; right: 24px; }
.services-link i { margin-left: 8px; color: var(--signal-red); font-size: 13px; }

.service-strip { position: absolute; left: 10px; right: 10px; top: 148px; height: 245px; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--screen-pixel); }

.service-card {
  position: relative;
  min-width: 0;
  padding: 13px 9px;
  color: white;
  background-color: #171a1d;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card--home {
  background-image: linear-gradient(rgba(27, 25, 22, .43), rgba(27, 25, 22, .56)), url("../assets/images/card-servicii-chei-friendly-v2.png");
}
.service-card--auto {
  background-image: linear-gradient(rgba(27, 25, 22, .43), rgba(27, 25, 22, .56)), url("../assets/images/card-servicii-auto-friendly-v2.png");
}
.service-card--safe {
  background-image: linear-gradient(rgba(27, 25, 22, .43), rgba(27, 25, 22, .56)), url("../assets/images/rubrica-4-incuietoare-usa-alternativa-v3.png");
}
.service-card > h3 {
  display: block;
  margin: 0;
  padding: 0 30px 8px 0;
  border-bottom: var(--screen-pixel) solid transparent;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}
.service-card > b {
  position: absolute;
  top: 11px;
  right: 9px;
  color: rgba(190, 190, 190, .55);
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: var(--screen-pixel);
  text-underline-offset: 7px;
  transition: color .2s ease;
}
.service-card:first-child { border-radius: var(--control-radius) 0 0 var(--control-radius); }
.service-card:last-child { border-radius: 0 var(--control-radius) var(--control-radius) 0; }
.service-card--active {
  z-index: 1;
  height: 100%;
  transform: translateY(-10px);
  border-radius: var(--control-radius);
  box-shadow: var(--service-card-shadow-active);
}
.service-card--active > h3 {
  color: white;
  border-bottom-color: var(--signal-red);
}
.service-card--active > b {
  color: var(--signal-red);
  text-decoration: none;
}
.service-card:hover {
  z-index: 1;
  transform: translateY(-10px);
  border-radius: var(--control-radius);
  box-shadow: var(--service-card-shadow-hover);
}
.service-card:focus-visible {
  z-index: 2;
  border-radius: var(--control-radius);
  outline: 2px solid var(--signal-red);
  outline-offset: 3px;
  box-shadow: var(--service-card-shadow-hover);
}
.service-card:active {
  transform: translateY(-6px);
  box-shadow: var(--service-card-shadow-active);
}
.service-card:active > h3 {
  color: white;
  border-bottom-color: var(--signal-red);
}
.service-card:hover > h3 {
  color: white;
  border-bottom-color: var(--signal-red);
}
.service-card:hover > b {
  color: var(--signal-red);
  text-decoration: none;
}
.service-strip:has(.service-card:not(.service-card--active):hover) .service-card--active {
  z-index: auto;
  transform: none;
  border-radius: 0;
  box-shadow: none;
}
.service-strip:has(.service-card:not(.service-card--active):hover) .service-card--active > h3 {
  color: white;
  border-bottom-color: transparent;
}
.service-strip:has(.service-card:not(.service-card--active):hover) .service-card--active > b {
  color: rgba(190, 190, 190, .55);
  text-decoration: underline;
}
.card-list { margin-top: 77px; font-size: 8px; }
.card-list span {
  position: relative;
  display: block;
  padding: 5px 0;
  color: white;
  text-decoration: none;
}
.service-card--active .card-list span,
.service-card:hover .card-list span {
  color: white;
  text-decoration: none;
}
.service-strip:has(.service-card:not(.service-card--active):hover) .service-card--active .card-list span {
  color: white;
  text-decoration: none;
}

.split { position: absolute; left: 0; width: 750px; display: grid; grid-template-columns: 62% 38%; }
.split--dark { top: 893px; height: 474px; background: linear-gradient(135deg, #24272b, #111317); }
.split--light { top: 1367px; height: 434px; grid-template-columns: 41.5% 58.5%; overflow: hidden; background: #f4f3f1; }
.split--special { top: 1801px; height: 447px; grid-template-columns: 38.5% 61.5%; background: #f4f3f1; }
.split-visual { width: 100%; height: 100%; border-radius: 6px; }
.split-visual--auto,
.split-visual--locks,
.split-visual--special { display: block; }
.split-visual--auto,
.split-visual--locks,
.split-visual--special { height: auto; align-self: center; object-fit: contain; object-position: center; transform: none; }

.split-media {
  position: relative;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
}

.split-media > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-copy { padding: 29px 28px; }
.split-copy--dark { color: white; background: transparent; }
.split-copy--light { color: var(--master-ink); background: var(--paper); }
.split-copy h2 { margin: 8px 0 18px; font-size: 31px; text-transform: none; }
.split-copy p {
  max-width: 250px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}
.split--dark .split-copy { padding-left: 40px; padding-right: 28px; }
.nowrap { white-space: nowrap; }
.split--dark h2 .nowrap { display: inline-block; transform: scaleX(.84); transform-origin: left center; }
.split--light .split-copy { position: relative; padding: 40px 34px; }
.split--light .split-copy h2 { margin-top: 12px; font-size: 31px; letter-spacing: -1.15px; text-transform: uppercase; }
.split--light#interventii .split-copy h2 { text-transform: none; }
.split--light .split-copy h2 { transform: scaleX(.93); transform-origin: left center; }
.split--light .split-copy h2 .nowrap { display: inline-block; transform: scaleX(.72); transform-origin: left center; }
.split--light .split-copy > p {
  width: 222px;
  margin-right: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.45;
}
.split--light .split-copy h2 .nowrap {
  transform: none;
}
.split--special .split-copy { position: relative; padding: 40px 34px; }
.split--special .split-copy h2 { margin-top: 24px; font-size: 31px; }

.feature-list, .timeline-list { list-style: none; padding: 0; margin: 19px 0 21px; font-size: 10px; }
.feature-list li { padding: 9px 0 9px 33px; border-bottom: var(--screen-pixel) solid #5a5d60; position: relative; }
.feature-list li > i { position: absolute; left: 3px; top: 10px; width: 20px; color: white; font-size: 13px; text-align: center; }
.special-service-list { margin: 20px 0 24px; }
.special-service-list li { border-color: #bdbdbd; }
.special-service-list li > i { color: var(--signal-red); }
.auto-actions { display: contents; }
.under-phone { display: block; margin-top: 11px; }
.red-rule { display: block; width: 26px; height: var(--screen-pixel); margin: 13px 0 15px; background: var(--signal-red); }
.red-rule--dark { background: #555; }

.timeline-list {
  position: absolute;
  top: 236px;
  left: 34px;
  width: 240px;
  height: 140px;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  line-height: 23.3px;
  letter-spacing: 0;
}
.timeline-list li {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 0;
  height: 23.3px;
  white-space: nowrap;
}
.timeline-list li:nth-child(1) { top: 0; }
.timeline-list li:nth-child(2) { top: 24.2px; }
.timeline-list li:nth-child(3) { top: 47.5px; }
.timeline-list li:nth-child(4) { top: 70.9px; }
.timeline-list li:nth-child(5) { top: 94.6px; }
.timeline-list li:nth-child(6) { top: 118px; }
.timeline-list > li::before {
  content: "";
  position: absolute;
  left: -22.5px;
  top: 9.15px;
  width: var(--timeline-bullet-size);
  min-width: var(--timeline-bullet-size);
  max-width: var(--timeline-bullet-size);
  height: var(--timeline-bullet-size);
  min-height: var(--timeline-bullet-size);
  max-height: var(--timeline-bullet-size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  box-sizing: border-box;
  background: var(--signal-red);
}
.lock-actions {
  position: absolute;
  left: 34px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 21px;
}
.auto-actions .button,
.lock-actions .button {
  width: 148px;
  min-width: 148px;
  min-height: 31px;
  padding: 7px 12px;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
  background: var(--signal-red);
}

.auto-actions .button i,
.lock-actions .button i { font-size: 13px; }
.auto-actions .under-phone,
.lock-actions .text-link {
  width: max-content;
  font-family: "Montserrat", sans-serif;
  font-size: 9.5px;
  white-space: nowrap;
  border-bottom: var(--screen-pixel) solid var(--signal-red);
}

html[lang="ru"] .timeline-list {
  font-size: 8.5px;
}

html[lang="ru"] .auto-actions .button { font-size: 13px; }

.special-note { display: flex; align-items: flex-start; gap: 13px; margin: 29px 0 28px; padding: 17px 0; border-top: var(--screen-pixel) solid #bdbdbd; border-bottom: var(--screen-pixel) solid #bdbdbd; font-family: "Montserrat", sans-serif; font-size: 11px; font-weight: 400; line-height: 1.45; }

.home-faq {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 104px);
  padding: clamp(72px, 9vw, 120px) clamp(28px, 7vw, 104px);
  color: var(--master-ink);
  background: var(--paper);
}
.home-faq-intro { align-self: start; }

/* On two-column sections, keep the editorial heading in view while its
   neighbouring content continues. The section itself remains the sticky
   boundary, so the heading releases naturally at the end of the row. */
@media (min-width: 901px) {
  .home-faq-intro {
    position: sticky;
    top: 96px;
  }
}

.home-faq .section-kicker {
  margin: 0 0 18px;
  color: var(--signal-red);
  font: 600 12px/1.2 "Montserrat", sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-faq h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
}
.home-faq-intro > p:last-child {
  max-width: 460px;
  margin: 22px 0 0;
  color: #55595d;
  font: 400 15px/1.7 "Montserrat", sans-serif;
}
.home-faq-list { border-top: 1px solid #bfc0c1; }
.home-faq details { border-bottom: 1px solid #bfc0c1; }
.home-faq summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  font: 600 clamp(17px, 1.5vw, 20px)/1.4 "Montserrat", sans-serif;
  list-style: none;
}
.home-faq summary::-webkit-details-marker { display: none; }
.home-faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--signal-red);
  font: 400 30px/1 "Oswald", sans-serif;
}
.home-faq details[open] summary::after { content: "−"; }
.home-faq details p {
  max-width: 70ch;
  margin: -5px 52px 24px 0;
  color: #55595d;
  font: 400 15px/1.7 "Montserrat", sans-serif;
}
.special-note i { flex: 0 0 22px; margin-top: 2px; font-size: 19px; text-align: center; }
.text-link--red i { margin-left: 13px; }

.contact { position: absolute; top: 2248px; left: 0; width: 750px; height: 385px; color: white; }
.contact-bg {
  position: absolute;
  inset: 0;
  background-color: #383b3e;
  background-image: url("../assets/images/footer-master-chei.png");
  background-position: top center;
  background-size: cover;
}
.contact-bg::after,
.contact-bg > span { display: none; }
.contact-shade { background: rgba(10, 12, 14, .58); }
.contact-copy { position: absolute; left: 27px; bottom: 90px; width: 330px; }
.contact-copy h2 { font-size: 31px; text-transform: none; }
.contact-copy p { font-family: "Montserrat", sans-serif; font-size: 11px; font-weight: 400; line-height: 1.45; }
.contact-copy small { display: flex; align-items: center; gap: 7px; width: max-content; margin-top: 8px; color: #aaa; font-size: 7px; line-height: 1.4; white-space: nowrap; }
.contact-copy small i { margin: 0; }

.contact-card { position: absolute; top: 97px; right: 17px; width: 284px; height: 183px; padding: 28px; background: rgba(27,29,32,.94); font-style: normal; }
.contact-card h4 { margin: 0 0 10px; font-size: 17px; }
.contact-card p { display: flex; gap: 8px; margin: 0 0 13px; font-size: 10px; line-height: 1.5; }
.contact-card p > i { margin-top: 2px; color: var(--signal-red); font-size: 13px; }
.contact-card .button { width: 214px; margin-bottom: 8px; }

.site-footer {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 50px;
  border-top: var(--screen-pixel) solid white;
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: #bbb;
  font-size: 16px;
  background: transparent !important;
}
.site-footer nav {
  display: flex;
  gap: 20px;
  margin: auto;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: normal;
  text-transform: none;
  white-space: nowrap;
}
.site-footer nav a { transition: color .2s ease; }
.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.site-footer nav a[aria-current="page"] { color: var(--signal-red); }
.footer-wordmark { display: none; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: var(--control-radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 15px;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--signal-red);
  outline: 0;
  color: var(--signal-red);
  background: transparent;
}
.footer-credit { color: white; font-size: 16px; white-space: nowrap; }
.footer-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover,
.footer-credit a:focus-visible { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media (max-width: 900px) {
  :root {
    --control-radius: 3px;
  }

  html { scroll-padding-top: 64px; }

  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    height: 64px;
    padding: 0 16px;
    gap: 12px;
  }

  .wordmark img { width: 145px; }

  .site-header > .wordmark {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .menu-toggle {
    order: 5;
    display: grid;
    place-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    margin-left: 0;
    padding: 0;
    border: 1px solid #4b4e51;
    border-radius: var(--control-radius);
    color: white;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 18px;
    border-top: 1px solid #34373a;
    background: #13161a;
    font-size: 15px;
    white-space: normal;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
  }

  .site-nav.is-open { display: grid; }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    padding: 12px 2px;
    border-bottom: 1px solid #34373a;
    text-align: left;
  }

  .nav-dropdown-toggle { justify-content: space-between; }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 8px 14px;
    border-top: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu a {
    min-height: 44px;
    padding: 12px 8px;
    color: #d7d8d9;
  }

  .language-switch {
    position: static;
    order: 3;
    margin-left: auto;
    padding: 8px 5px;
    font-size: 12px;
    min-height: 44px;
  }

  .language-switch-icon { width: 18px; height: 18px; }

  .header-phone {
    position: static;
    order: 4;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: white;
    font-size: 0;
    line-height: 0;
  }

  .header-phone-icon {
    display: block;
    width: 17px;
    height: 17px;
    margin: 0;
  }

  .header-phone span { display: none; }

  .hero,
  .services,
  .split,
  .contact {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .hero { height: min(680px, calc(100svh - 64px)); min-height: 540px; }
  .placeholder--hero {
    background-color: #111419;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(7,9,11,.12) 0,
      rgba(7,9,11,.14) calc(56.22vw - 72px),
      #111419 56.22vw,
      #111419 100%
    );
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 34px;
    text-align: left;
  }

  .hero h1 {
    max-width: 580px;
    font-size: clamp(34px, 10.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1px;
    transform: none;
  }

  .hero p {
    max-width: 520px;
    margin: 16px 0 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    left: 0;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    width: auto;
    margin: 0;
  }

  .hero-actions .button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .button {
    min-width: 150px;
    min-height: 46px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .button--red { font-size: 15px; }
  .text-link { font-size: 14px; }

  .hero-location {
    left: 0;
    margin-top: 18px;
    font-size: 13px;
  }

  .hero-social {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .hero-social a {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .services {
    padding: 52px 20px 56px;
  }

  .services h2,
  .split h2,
  .contact h2 {
    margin: 10px 0 14px;
    font-size: 31px;
    line-height: 1.08;
  }

  .section-count { font-size: 13px; }
  .services > p { max-width: 520px; font-size: 15px; line-height: 1.55; }

  .services-link {
    position: static;
    margin-top: 18px;
  }

  .service-strip {
    position: static;
    height: auto;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card,
  .service-card--active,
  .service-card:hover {
    min-height: 250px;
    padding: 20px;
    border-radius: var(--control-radius);
    transform: none;
    box-shadow: none;
  }

  .service-card--active {
    box-shadow: var(--service-card-shadow-active);
  }

  .service-card:hover,
  .service-card:focus-visible {
    box-shadow: var(--service-card-shadow-hover);
  }

  .service-card:active {
    transform: translateY(2px);
    box-shadow: 0 2px 8px rgba(10, 12, 14, .23);
  }

  .service-card > h3 { padding-right: 48px; font-size: 17px; }
  .service-card > b { top: 19px; right: 20px; font-size: 27px; }
  .card-list { margin-top: 84px; font-size: 14px; }
  .card-list span { padding: 8px 0; }

  .split {
    display: flex;
    flex-direction: column;
  }

  .split-visual {
    order: 1;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .split-visual--auto,
  .split-visual--locks,
  .split-visual--special {
    aspect-ratio: 1061 / 900;
  }

  .split-media {
    order: 1;
    width: 100%;
    aspect-ratio: 1061 / 900;
  }

  .split-copy,
  .split--dark .split-copy,
  .split--light .split-copy,
  .split--special .split-copy {
    order: 2;
    padding: 48px 20px 54px;
  }

  .split-copy h2,
  .split--light .split-copy h2,
  .split--special .split-copy h2,
  html[lang="ru"] .split--light .split-copy h2 {
    margin: 10px 0 20px;
    font-size: 31px;
    letter-spacing: -.8px;
    transform: none;
  }

  .desktop-line-break { display: none; }

  .split--dark h2 .nowrap,
  .split--light .split-copy h2 .nowrap { transform: none; }

  .nowrap { white-space: normal; }

  .split-copy p,
  .split--light .split-copy > p {
    width: auto;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.55;
  }

  .feature-list,
  .timeline-list,
  html[lang="ru"] .timeline-list {
    position: static;
    width: auto;
    height: auto;
    margin: 28px 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .feature-list li { min-height: 48px; padding: 14px 0 14px 38px; }
  .feature-list li > i { top: 16px; font-size: 16px; }

  .auto-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 18px;
  }

  .auto-actions .button,
  .lock-actions .button {
    flex: 0 1 190px;
    width: 190px;
    min-width: 0;
    min-height: 46px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .auto-actions .under-phone {
    flex: 0 0 auto;
    margin-top: 0;
    font-size: 13px;
  }

  .timeline-list li,
  .timeline-list li:nth-child(n) {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    min-height: 38px;
    padding: 8px 0 8px 28px;
    white-space: normal;
  }

  .timeline-list > li::before { left: 3px; top: 15px; }

  .lock-actions {
    position: static;
    flex-wrap: wrap;
    gap: 18px;
  }

  html[lang="ru"] .auto-actions .button,
  html[lang="ru"] .lock-actions .button { font-size: 13px; }
  .lock-actions .text-link { font-size: 13px; }

  .special-note { margin: 28px 0; padding: 20px 0; font-size: 15px; line-height: 1.55; }

  .contact {
    min-height: 760px;
    padding: calc(56.28vw + 32px) 20px 104px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #101316;
  }

  .contact-bg {
    background-color: #101316;
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .contact-shade { background: rgba(10, 12, 14, .58); }

  .contact-copy,
  .contact-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .contact-copy { order: 1; }
  .contact-copy p { max-width: 540px; font-size: 15px; line-height: 1.55; }
  .contact-copy small { width: auto; font-size: 11px; white-space: normal; }

  .contact-card {
    order: 2;
    margin-top: 28px;
    padding: 24px;
    background: rgba(27,29,32,.96);
  }

  .contact-card h4 { font-size: 17px; }
  .contact-card p { font-size: 14px; }
  .contact-card .button { width: 100%; margin-bottom: 10px; }

  .site-footer {
    left: 20px;
    right: 20px;
    height: auto;
    min-height: 86px;
    padding: 16px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 18px;
    font-size: 12px;
  }

  .site-footer nav { margin: 0; justify-content: flex-end; gap: 12px; font-size: 15px; }
  .footer-credit { grid-column: 1 / -1; font-size: 12px; white-space: normal; }
}

@media (max-width: 420px) {
  .site-header { padding-inline: 12px; gap: 8px; }
  .wordmark img { width: 130px; }
  .language-switch { gap: 2px; }
  .language-switch-icon { width: 16px; height: 16px; }
  .hero-copy { left: 16px; right: 16px; }
  .services,
  .split-copy,
  .split--dark .split-copy,
  .split--light .split-copy,
  .split--special .split-copy { padding-left: 16px; padding-right: 16px; }
  .contact { padding: calc(56.28vw + 32px) 16px 140px; }
  .site-footer { left: 16px; right: 16px; font-size: 10px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; flex-wrap: wrap; font-size: 15px; white-space: normal; }
  .footer-credit { grid-column: auto; font-size: 10px; }
}

@media (min-width: 901px) {
  .home-page .site-header,
  .service-page .site-header {
    position: sticky;
    top: 0;
    height: 72px;
    padding-inline: clamp(24px, 5vw, 72px);
  }

  .home-page .wordmark img,
  .service-page .wordmark img { width: 154px; }

  .home-page .site-nav,
  .service-page .site-nav,
  .home-page .site-footer nav {
    gap: 28px;
    font-size: 13px;
  }

  .home-page .site-nav,
  .service-page .site-nav { line-height: 1.3; }

  .home-page .site-nav,
  .service-page .site-nav { left: 50%; transform: translateX(-50%); }

  .home-page .site-footer nav { margin: auto; }

  .home-page .nav-dropdown-toggle i,
  .service-page .nav-dropdown-toggle i { font-size: 8px; }

  .home-page .language-switch,
  .service-page .language-switch {
    right: calc(clamp(24px, 5vw, 72px) + 141px);
    width: 38px;
    font-size: 11px;
  }

  .home-page .header-phone,
  .service-page .header-phone {
    right: clamp(24px, 5vw, 72px);
    width: 126px;
    height: 35px;
    box-sizing: border-box;
    font-size: 13px;
  }

  .home-page .hero,
  .home-page .services,
  .home-page .split,
  .home-page .contact {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    width: 100%;
  }

  .home-page .hero {
    height: clamp(560px, 56.28vw, 760px);
  }

  .home-page .hero-copy {
    left: clamp(32px, 8vw, 120px);
    right: clamp(32px, 8vw, 120px);
    bottom: clamp(60px, 7vw, 92px);
  }

  .home-page .hero h1 {
    font-size: clamp(52px, 5.2vw, 72px);
    letter-spacing: -1.4px;
    transform: none;
  }

  .home-page .hero p {
    margin: 16px 0 20px;
    font-size: 16px;
  }

  .home-page .hero-actions,
  .home-page .hero-location { left: 0; }

  .home-page .button {
    min-width: 170px;
    min-height: 48px;
    padding: 12px 20px;
    font-size: 15px;
  }

  .home-page .text-link { font-size: 14px; }
  .home-page .hero-location { margin-top: 16px; font-size: 13px; }

  .home-page .services {
    height: auto;
    padding: clamp(72px, 7vw, 104px) clamp(24px, 5vw, 72px);
  }

  .home-page .services h2,
  .home-page .split h2,
  .home-page .contact h2 {
    font-size: clamp(46px, 4.4vw, 64px);
    letter-spacing: -1.2px;
  }

  .home-page .section-count { font-size: 13px; }
  .home-page .services > p { font-size: 16px; }

  .home-page .services-link {
    position: static;
    margin-top: 24px;
  }

  .home-page .service-strip {
    position: static;
    height: auto;
    margin-top: 52px;
    gap: 1px;
  }

  .home-page .service-card {
    min-height: clamp(340px, 34vw, 440px);
    padding: 24px 20px;
  }

  .home-page .service-card > h3 {
    padding-right: 54px;
    font-size: clamp(24px, 2.2vw, 32px);
  }

  .home-page .service-card > b {
    top: 24px;
    right: 20px;
    font-size: 32px;
  }

  .home-page .card-list {
    margin-top: clamp(110px, 12vw, 150px);
    font-size: 14px;
  }

  .home-page .card-list span { padding: 9px 0; }

  .home-page .split {
    height: auto;
  }

  .home-page .split-media {
    align-self: stretch;
    margin-block: 40px;
  }

  .home-page .split-copy,
  .home-page .split--dark .split-copy,
  .home-page .split--light .split-copy,
  .home-page .split--special .split-copy {
    padding: clamp(56px, 6vw, 88px) clamp(36px, 5vw, 72px);
  }

  .home-page .split-copy h2,
  .home-page .split--light .split-copy h2,
  .home-page .split--special .split-copy h2 {
    margin: 14px 0 24px;
    font-size: clamp(46px, 4.4vw, 64px);
    letter-spacing: -1.2px;
    transform: none;
  }

  .home-page .split--dark h2 .nowrap,
  .home-page .split--light .split-copy h2 .nowrap { transform: none; }

  .home-page .split-copy p,
  .home-page .split--light .split-copy > p {
    width: auto;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
  }

  .home-page .feature-list,
  .home-page .timeline-list,
  html[lang="ru"] .home-page .timeline-list {
    position: static;
    width: auto;
    height: auto;
    margin: 30px 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .home-page .feature-list li {
    min-height: 50px;
    padding: 14px 0 14px 40px;
  }

  .home-page .feature-list li > i {
    top: 16px;
    font-size: 17px;
  }

  .home-page .timeline-list li,
  .home-page .timeline-list li:nth-child(n) {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    min-height: 42px;
    padding: 9px 0 9px 30px;
    white-space: normal;
  }

  .home-page .timeline-list > li::before {
    left: 3px;
    top: 17px;
  }

  .home-page .auto-actions,
  .home-page .lock-actions {
    position: static;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .home-page .auto-actions .button,
  .home-page .lock-actions .button {
    width: auto;
    min-width: 190px;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .home-page .auto-actions .under-phone,
  .home-page .lock-actions .text-link {
    margin-top: 0;
    font-size: 13px;
  }

  .home-page .special-note {
    margin: 30px 0;
    padding: 22px 0;
    font-size: 15px;
  }

  .home-page .contact {
    height: clamp(600px, 56.28vw, 760px);
  }

  .home-page .contact-copy {
    left: clamp(24px, 5vw, 72px);
    bottom: 132px;
    width: min(520px, 42vw);
  }

  .home-page .contact-copy p {
    max-width: 520px;
    font-size: 16px;
  }

  .home-page .contact-copy small { font-size: 11px; }

  .home-page .contact-card {
    top: 50%;
    right: clamp(24px, 5vw, 72px);
    width: min(390px, 34vw);
    height: auto;
    padding: 32px;
    transform: translateY(-50%);
  }

  .home-page .contact-card h4 { font-size: 22px; }
  .home-page .contact-card p { font-size: 14px; }
  .home-page .contact-card .button { width: 100%; }

  .home-page .site-footer {
    left: clamp(24px, 5vw, 72px);
    right: clamp(24px, 5vw, 72px);
    height: 78px;
    padding: 0;
    font-size: 16px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .home-page .site-nav,
  .service-page .site-nav,
  .home-page .site-footer nav {
    gap: 16px;
    font-size: 11px;
  }

  /* Tablet portrait: keep the alternating two-column composition, but let
     each rubric grow with its copy instead of clipping it to the desktop
     section height. */
  .home-page .split {
    height: auto;
    min-height: 0;
  }

  .home-page .split-visual {
    min-height: 720px;
  }

  .home-page .split-visual--auto,
  .home-page .split-visual--locks,
  .home-page .split-visual--special {
    min-height: 0;
  }

  .home-page .split-copy,
  .home-page .split--dark .split-copy,
  .home-page .split--light .split-copy,
  .home-page .split--special .split-copy {
    padding: 48px 36px;
  }

  .home-page .split-media {
    margin-block: 40px;
  }

  .home-page .split-copy h2,
  .home-page .split--light .split-copy h2,
  .home-page .split--special .split-copy h2 {
    font-size: clamp(40px, 4.4vw, 48px);
  }

  .home-page .feature-list,
  .home-page .timeline-list,
  html[lang="ru"] .home-page .timeline-list {
    margin-block: 24px;
  }

  .site-footer,
  .home-page .site-footer {
    height: auto;
    min-height: 86px;
    padding-block: 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 18px;
  }

  .site-footer nav {
    margin: 0;
    justify-content: flex-end;
    gap: 12px;
  }

  .footer-credit {
    grid-column: 1 / -1;
    white-space: normal;
  }
}

/* Wide desktop layout: section backgrounds remain full-bleed while all
   readable content follows a shared 1200px grid. Tablet and mobile layouts
   intentionally keep their existing behavior. */
@media (min-width: 1201px) {
  .home-page {
    --home-content-width: 1200px;
    --home-gutter: calc((100vw - var(--home-content-width)) / 2);
  }

  .home-page .site-header {
    padding-inline: var(--home-gutter);
  }

  .home-page .language-switch {
    right: calc(var(--home-gutter) + 141px);
  }

  .home-page .header-phone {
    right: var(--home-gutter);
  }

  .home-page .hero-copy {
    right: var(--home-gutter);
    left: var(--home-gutter);
  }

  .home-page .services {
    padding-right: var(--home-gutter);
    padding-left: var(--home-gutter);
  }

  /* Rubrics 3–5 use a centered 1200px two-column grid. The photographs are
     regular content images; only the section surfaces continue full-bleed. */
  .home-page .split {
    height: auto;
    padding-inline: var(--home-gutter);
  }

  .home-page .split--dark {
    grid-template-columns: 702px 498px;
    background: linear-gradient(135deg, #24272b, #111317);
  }

  .home-page .split--light {
    grid-template-columns: 498px 702px;
    background: #f4f3f1;
  }

  .home-page .split--special {
    grid-template-columns: 498px 702px;
    background: #f4f3f1;
  }

  .home-page .split-copy,
  .home-page .split--dark .split-copy,
  .home-page .split--light .split-copy,
  .home-page .split--special .split-copy {
    padding: 100px 35px;
  }

  .home-page .split-media {
    margin-block: 40px;
  }

  .home-page .split-copy h2,
  .home-page .split--light .split-copy h2,
  .home-page .split--special .split-copy h2 {
    font-size: 60px;
  }

  .home-page .contact-copy {
    left: var(--home-gutter);
  }

  .home-page .contact-card {
    right: var(--home-gutter);
  }

  .home-page .site-footer {
    right: 0;
    left: 0;
    padding-inline: var(--home-gutter);
  }
}

/* Compact laptop fallback. At this width a true 1200px content grid cannot
   have outside gutters, so keep the columns fluid but preserve the same
   vertical rhythm and enough section height for every control to remain
   visible. */
@media (min-width: 1101px) and (max-width: 1200px) {
  .home-page .split {
    height: auto;
  }

  .home-page .split--dark {
    grid-template-columns: minmax(0, 1fr) 498px;
  }

  .home-page .split--special {
    grid-template-columns: 498px minmax(0, 1fr);
  }

  .home-page .split--light {
    grid-template-columns: 498px minmax(0, 1fr);
  }

  .home-page .split-copy,
  .home-page .split--dark .split-copy,
  .home-page .split--light .split-copy,
  .home-page .split--special .split-copy {
    padding: 100px 35px;
  }

  .home-page .split-media {
    margin-block: 40px;
  }

  .home-page .split-copy h2,
  .home-page .split--light .split-copy h2,
  .home-page .split--special .split-copy h2 {
    font-size: 52px;
  }
}

/* Rubrics 3–5: expanded desktop spacing around the media and copy columns. */
@media (min-width: 1101px) {
  .home-page .split-media {
    margin-top: 100px;
    margin-bottom: 90px;
  }

  .home-page .split--light .split-copy {
    padding-bottom: 90px;
  }

  .home-page .split--special .split-copy {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .home-page .split--special .split-media {
    margin-top: 100px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .home-page .split-media {
    margin-top: 38px;
    margin-bottom: 33px;
  }
}

/* Shared body-copy scale */
body { font-size: 15px; }

.hero p,
.services > p,
.card-list,
.split-copy p,
.split--light .split-copy > p,
.feature-list,
.timeline-list,
html[lang="ru"] .timeline-list,
.special-note,
.contact-copy p,
.contact-card p {
  font-size: 15px;
}

/* Shared page grid
   Full-bleed section surfaces stay on the section itself; every meaningful
   child area is inset to the same responsive 1200px content boundary. */
:root {
  --page-content-max: 1200px;
  --page-gutter: 20px;
}

@media (max-width: 420px) {
  :root { --page-gutter: 16px; }
}

@media (min-width: 901px) and (max-width: 1200px) {
  :root { --page-gutter: clamp(24px, 5vw, 72px); }
}

@media (min-width: 1201px) {
  :root { --page-gutter: calc((100vw - var(--page-content-max)) / 2); }
}

@media (max-width: 900px) {
  .site-header { padding-inline: var(--page-gutter); }
  .site-nav { padding-inline: var(--page-gutter); }
}

@media (min-width: 901px) {
  .home-page .site-header,
  .service-page .site-header { padding-inline: var(--page-gutter); }
  .home-page .language-switch,
  .service-page .language-switch { right: calc(var(--page-gutter) + 141px); width: 38px; }
  .home-page .header-phone,
  .service-page .header-phone { right: var(--page-gutter); }
  .home-page .hero-copy { right: var(--page-gutter); left: var(--page-gutter); }
  .home-page .services { padding-inline: var(--page-gutter); }
  .home-page .split { padding-inline: var(--page-gutter); }
  .home-page .home-faq { padding-inline: var(--page-gutter); }
  .home-page .contact-copy { left: var(--page-gutter); }
  .home-page .contact-card { right: var(--page-gutter); }
  .home-page .site-footer {
    right: 0;
    left: 0;
    padding-inline: var(--page-gutter);
  }
}

/* The legal copy remains comfortably readable, while its left edge follows
   the same page grid as the logo and footer. */
.privacy-page .privacy-main {
  width: auto;
  max-width: var(--page-content-max);
  margin-inline: auto;
}

.privacy-page .privacy-main > * { max-width: 820px; }

.privacy-page .site-footer {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  min-height: 78px;
  padding-inline: var(--page-gutter);
}

@media (min-width: 901px) and (max-width: 1200px) {
  .privacy-page .privacy-main {
    max-width: none;
    padding-inline: var(--page-gutter);
  }
}

@media (min-width: 901px) {
  .privacy-page .site-header {
    padding-inline: var(--page-gutter);
  }

  .privacy-page .language-switch {
    right: calc(var(--page-gutter) + 141px);
    width: 38px;
  }

  .privacy-page .header-phone { right: var(--page-gutter); }
}

@media (max-width: 900px) {
  .privacy-page .privacy-main {
    width: auto;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .home-faq {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 759px) {
  .home-faq { padding: 68px 20px 78px; }
}

/* The hero image is pre-framed to keep the workshop centred, avoiding the
   browser-side scaling that previously softened the photo's lower edge. */
@media (max-width: 1200px) {
  .home-page .placeholder--hero {
    background-position: center center;
    background-size: cover;
    transform: none;
  }
}

@media (max-width: 420px) {
  .home-faq { padding-right: 16px; padding-left: 16px; }
}

/* Tablet and mobile footer: preserve the same content order, sizing and
   vertical rhythm across the full responsive range. */
@media (max-width: 1200px) {
  .site-footer,
  .home-page .site-footer,
  .privacy-page .site-footer {
    height: auto;
    min-height: 0;
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .site-footer nav,
  .home-page .site-footer nav,
  .privacy-page .site-footer nav {
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.35;
    white-space: normal;
  }

  .footer-social {
    margin: 0 0 28px;
  }

  .footer-credit {
    grid-column: auto;
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
  }

  .home-page .contact { padding-bottom: 350px; }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .home-page .contact {
    height: 56.28vw;
    min-height: 0;
    padding-bottom: 0;
  }

  .home-page .contact-bg {
    /* Keep one complete workshop photograph visible from edge to edge. */
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .home-page .contact-copy {
    top: clamp(52px, 7vw, 80px);
    bottom: auto;
  }

  .home-page .contact-card {
    top: clamp(42px, 6vw, 72px);
    padding: 22px;
    transform: none;
  }

  .home-page .contact-copy h2 { font-size: clamp(34px, 4vw, 44px); }
  .home-page .contact-copy p { font-size: 14px; line-height: 1.45; }
  .home-page .contact-card h4 { margin-bottom: 8px; font-size: 19px; }
  .home-page .contact-card p { margin-bottom: 9px; font-size: 12px; line-height: 1.35; }
  .home-page .contact-card .button {
    min-height: 42px;
    margin-bottom: 7px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .home-page .site-footer {
    right: var(--page-gutter);
    left: var(--page-gutter);
  }
}

/* Desktop footer: compact single-row brand, social, navigation and credit. */
@media (min-width: 1201px) {
  .site-footer,
  .home-page .site-footer,
  .privacy-page .site-footer {
    gap: clamp(18px, 2vw, 32px);
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
  }

  .footer-wordmark {
    order: 1;
    flex: 0 0 auto;
    display: block;
    line-height: 0;
  }

  .footer-wordmark img {
    display: block;
    width: 118px;
    height: auto;
  }

  .footer-social {
    order: 2;
    flex: 0 0 auto;
    gap: 7px;
    margin: 0;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .site-footer nav,
  .home-page .site-footer nav,
  .privacy-page .site-footer nav {
    order: 3;
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(12px, 1.45vw, 22px);
    margin: 0;
    font-size: 11px;
    font-weight: 400;
  }

  .site-footer .footer-contact-link { display: none; }

  .footer-credit {
    order: 4;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 400;
  }
}

/* The contact photograph is a fixed-width canvas from 901px upward. */
@media (min-width: 901px) and (max-width: 1200px) {
  .home-page .site-footer {
    height: 78px;
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(18px, 2vw, 32px);
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
  }

  .home-page .footer-wordmark {
    order: 1;
    flex: 0 0 auto;
    display: block;
    line-height: 0;
  }

  .home-page .footer-wordmark img {
    display: block;
    width: 118px;
    height: auto;
  }

  .home-page .footer-social {
    order: 2;
    flex: 0 0 auto;
    gap: 7px;
    margin: 0;
  }

  .home-page .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .home-page .site-footer nav {
    order: 3;
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.45vw, 22px);
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
  }

  .home-page .site-footer .footer-contact-link { display: none; }

  .home-page .footer-credit {
    order: 4;
    flex: 0 0 auto;
    grid-column: auto;
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
  }
}

@media (min-width: 901px) and (max-width: 970px) {
  .home-page .site-footer { gap: 10px; }
  .home-page .footer-wordmark img { width: 94px; }
  .home-page .footer-social { gap: 7px; }
  .home-page .footer-social a { width: 20px; height: 20px; font-size: 10px; }
  .home-page .site-footer nav { gap: 6px; font-size: 9px; }
  .home-page .footer-credit { font-size: 9px; }
}

@media (max-width: 759px) {
  .site-footer,
  .home-page .site-footer,
  .privacy-page .site-footer {
    background: #101316 !important;
  }
}

/* Shared day/night appearance. The original artwork remains the night theme;
   day mode translates the same workshop palette into paper and brushed steel. */
:root {
  color-scheme: dark;
  --day-canvas: #f6f4ef;
  --day-surface: #fffefa;
  --day-steel: #e4e1da;
  --day-workbench: #fff;
  --day-border: #cbc7be;
  --day-ink: #191c20;
  --day-copy: #55595d;
}

html[data-theme="light"] { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }

.theme-switch {
  position: absolute;
  right: 174px;
  box-sizing: border-box;
  width: 38px;
  height: 34px;
  margin: 0;
  padding: 0 10px 0 0;
  border: 0;
  border-radius: var(--control-radius);
  display: grid;
  place-items: center;
  justify-items: end;
  color: white;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.theme-switch:hover,
.theme-switch:focus-visible {
  outline: none;
  color: var(--signal-red);
}

.theme-switch:focus-visible { box-shadow: 0 0 0 2px color-mix(in srgb, var(--signal-red), transparent 65%); }

.theme-switch-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-switch-icon--moon {
  display: none;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
html[data-theme="light"] .theme-switch-icon--sun { display: none; }
html[data-theme="light"] .theme-switch-icon--moon { display: block; }

html[data-theme="light"] body {
  background: var(--day-canvas);
  color: var(--day-ink);
}

html[data-theme="light"] .site-header {
  color: var(--day-ink);
  background: rgba(246, 244, 239, .97);
  border-bottom: 1px solid var(--day-border);
}

html[data-theme="light"] .wordmark img { filter: invert(1); }
html[data-theme="light"] .language-switch { color: var(--day-ink); }
html[data-theme="light"] .theme-switch,
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .header-phone {
  color: var(--day-ink);
}

html[data-theme="light"] .nav-dropdown-menu { background: var(--day-surface); }
html[data-theme="light"] .nav-dropdown-menu a { color: var(--day-ink); }

html[data-theme="light"] .section-light,
html[data-theme="light"] .services,
html[data-theme="light"] .split--light,
html[data-theme="light"] .split--special,
html[data-theme="light"] .split-copy--light,
html[data-theme="light"] .home-faq {
  color: var(--day-ink);
  background: var(--day-canvas);
}

html[data-theme="light"] .split--dark {
  color: var(--day-ink);
  background: var(--day-surface);
}

html[data-theme="light"] .split-copy--dark { color: var(--day-ink); }
/* Keep the 5/6 service panel on the same canvas as 4/6 and the FAQ in day mode. */
html[data-theme="light"] .split--special,
html[data-theme="light"] .split--special .split-copy--light {
  background: var(--day-canvas);
}
html[data-theme="light"] .feature-list li { border-bottom-color: var(--day-border); }
html[data-theme="light"] .feature-list li > i { color: var(--signal-red); }
html[data-theme="light"] .red-rule--dark { background: var(--signal-red); }
html[data-theme="light"] .home-faq-intro > p:last-child,
html[data-theme="light"] .home-faq details p { color: var(--day-copy); }
html[data-theme="light"] .home-faq-list,
html[data-theme="light"] .home-faq details { border-color: var(--day-border); }

html[data-theme="light"] .hero-shade {
  background:
    radial-gradient(ellipse at 50% 82%, rgba(8, 10, 12, .68) 0%, rgba(8, 10, 12, .42) 38%, transparent 72%),
    linear-gradient(180deg, rgba(8, 10, 12, .02) 18%, rgba(8, 10, 12, .08) 54%, rgba(8, 10, 12, .34) 100%);
}

/* Image-led hero/contact sections deliberately retain a dark veil so white
   type stays readable in both themes. */
html[data-theme="light"] .contact-card {
  color: var(--day-ink);
  background: rgba(255, 254, 250, .95);
}
html[data-theme="light"] .contact-card .button--outline {
  color: var(--day-ink);
  border-color: var(--day-ink);
}

html[data-theme="light"] .privacy-page { background: var(--day-canvas); color: var(--day-ink); }
html[data-theme="light"] .privacy-main .updated { color: var(--day-copy); }
html[data-theme="light"] .privacy-main section { border-color: var(--day-border); }
html[data-theme="light"] .privacy-main .legal-link { color: var(--day-ink); }

@media (min-width: 901px) {
  .home-page .theme-switch,
  .service-page .theme-switch,
  .privacy-page .theme-switch { right: calc(var(--page-gutter) + 184px); }
}

@media (max-width: 900px) {
  .site-header > .wordmark {
    flex: 1 1 auto;
    min-width: 0;
  }

  .wordmark img { max-width: 100%; }

  .menu-toggle,
  .header-phone {
    flex: 0 0 44px;
  }

  .theme-switch {
    position: static;
    order: 2;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .language-switch {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin-left: 0;
    justify-content: center;
  }

  html[data-theme="light"] .site-nav {
    background: var(--day-surface);
    border-top-color: var(--day-border);
    box-shadow: 0 12px 24px rgba(40, 36, 30, .12);
  }
  html[data-theme="light"] .site-nav > a,
  html[data-theme="light"] .nav-dropdown-toggle { border-bottom-color: var(--day-border); }
  html[data-theme="light"] .nav-dropdown-menu a { color: var(--day-copy); }
}

@media (max-width: 900px) {
  /* Keep the home hero's responsive geometry independent of the selected
     theme: the photograph occupies its own fixed-ratio area and the copy
     follows beneath it. Themes may only change its visual treatment. */
  .home-page .hero {
    height: auto;
    min-height: 0;
    padding-top: 56.22vw;
    color: white;
    background: #111419;
  }

  .home-page .hero-copy {
    position: relative;
    z-index: 1;
    inset: auto;
    padding: 32px var(--page-gutter) 56px;
  }

  .home-page .placeholder--hero {
    right: 0;
    bottom: auto;
    left: 0;
    height: 56.22vw;
    background-color: #111419;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .home-page .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(7, 9, 11, .12) 0,
      rgba(7, 9, 11, .28) calc(56.22vw - 14px),
      #111419 56.22vw,
      #111419 100%
    );
  }

  html[data-theme="light"] .hero {
    color: var(--day-ink);
    background: var(--day-canvas);
  }

  html[data-theme="light"] .placeholder--hero { background-color: var(--day-canvas); }

  html[data-theme="light"] .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(246, 244, 239, 0) 0,
      rgba(246, 244, 239, 0) calc(56.22vw - 14px),
      var(--day-canvas) 56.22vw,
      var(--day-canvas) 100%
    );
  }

  html[data-theme="light"] .hero p,
  html[data-theme="light"] .text-link--light { color: var(--day-ink); }

  html[data-theme="light"] .hero-actions .button--outline { color: var(--day-ink); }

  html[data-theme="light"] .hero-location { color: var(--day-copy); }

  html[data-theme="light"] .hero-social a {
    color: var(--day-ink);
    border-color: #aaa69d;
    background: rgba(255, 254, 250, .62);
  }

  html[data-theme="light"] .hero-social a:hover,
  html[data-theme="light"] .hero-social a:focus-visible {
    color: var(--signal-red);
    background: var(--day-surface);
  }

  html[data-theme="light"] .contact {
    color: var(--day-ink);
    background: var(--day-canvas);
  }

  html[data-theme="light"] .contact-bg { background-color: var(--day-canvas); }

  html[data-theme="light"] .contact-shade {
    inset: 0 0 auto;
    height: 56.28vw;
  }

  html[data-theme="light"] .contact-copy small { color: var(--day-copy); }

  html[data-theme="light"] .site-footer,
  html[data-theme="light"] .home-page .site-footer,
  html[data-theme="light"] .privacy-page .site-footer {
    color: var(--day-copy);
    border-top-color: var(--day-border);
    background: var(--day-canvas) !important;
  }

  html[data-theme="light"] .site-footer nav,
  html[data-theme="light"] .footer-credit,
  html[data-theme="light"] .footer-social a { color: var(--day-ink); }

  html[data-theme="light"] .footer-social a { border-color: #aaa69d; }
}

/* Let the section 5 title flow like the other rubric titles on mobile and
   tablet. It keeps their shared title scale and only wraps when needed. */
@media (max-width: 1200px) {
  .home-page #special .split-copy h2 br { display: none; }
  .home-page #special .split-copy h2 .nowrap { white-space: normal; }
  .home-page #special .split-copy h2 .nowrap + br + .nowrap::before { content: " "; }
}

@media (min-width: 1201px) {
  .home-page #interventii .split-copy h2 br { display: none; }
}

/* Keep the desktop page layout through tablet widths, but switch the header
   navigation to its compact burger-menu treatment below 960px. */
@media (min-width: 901px) and (max-width: 959px) {
  html { scroll-padding-top: 64px; }

  .site-header,
  .home-page .site-header,
  .service-page .site-header {
    height: 64px;
    padding-inline: var(--page-gutter);
    gap: 12px;
  }

  .wordmark img { width: 145px; }

  .site-header > .wordmark {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
    min-height: 44px;
  }

  .menu-toggle {
    order: 5;
    display: grid;
    flex: 0 0 44px;
    place-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid #4b4e51;
    border-radius: var(--control-radius);
    color: white;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .site-nav,
  .home-page .site-nav,
  .service-page .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--page-gutter) 18px;
    border-top: 1px solid #34373a;
    background: #13161a;
    font-size: 15px;
    white-space: normal;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
    transform: none;
  }

  .site-nav.is-open { display: grid; }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    padding: 12px 2px;
    border-bottom: 1px solid #34373a;
    text-align: left;
  }

  .nav-dropdown-toggle { justify-content: space-between; }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 8px 14px;
    border-top: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu a {
    min-height: 44px;
    padding: 12px 8px;
    color: #d7d8d9;
  }

  .theme-switch,
  .language-switch,
  .header-phone {
    position: static;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .theme-switch { order: 2; flex: 0 0 44px; }
  .language-switch { order: 3; flex: 0 0 44px; }

  .header-phone {
    order: 4;
    flex: 0 0 44px;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: white;
    font-size: 0;
    line-height: 0;
  }

  .header-phone-icon { width: 17px; height: 17px; }
  .header-phone span { display: none; }

  html[data-theme="light"] .site-nav {
    background: var(--day-surface);
    border-top-color: var(--day-border);
    box-shadow: 0 12px 24px rgba(40, 36, 30, .12);
  }

  html[data-theme="light"] .site-nav > a,
  html[data-theme="light"] .nav-dropdown-toggle { border-bottom-color: var(--day-border); }
}

/* On compact headers, balance the visible gaps while preserving 44px targets. */
@media (max-width: 959px) {
  .theme-switch { padding-right: 0; }

  .home-page .language-switch,
  .service-page .language-switch {
    flex: 0 0 44px;
    width: 44px;
  }

  .language-switch-icon {
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    padding: 0;
    stroke-width: 1.6;
  }
}
