@font-face {
  font-family: "SC Inter";
  src: url("assets/Inter-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "SC Inter";
  src: url("assets/Inter-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

@font-face {
  font-family: "SC Display";
  src: url("assets/Bahnschrift.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --paper: #f3f0e9;
  --paper-2: #e8e3d9;
  --white: #fffdf8;
  --ink: #171715;
  --muted: #68665f;
  --rule: #c9c4b9;
  --signal: #ff5a0a;
  --signal-dark: #d94200;
  --max: 1320px;
  --pad: clamp(20px, 4.15vw, 60px);
}

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

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "SC Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(var(--max), calc(100% - (2 * var(--pad))));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #1473e6;
  outline-offset: 4px;
}

.masthead {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--ink);
  background: rgba(243, 240, 233, .96);
  backdrop-filter: blur(12px);
}

.masthead__row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(250px, 1fr) auto;
  align-items: center;
  min-height: 92px;
  gap: clamp(22px, 3vw, 48px);
}

.brand {
  grid-column: 1;
  display: grid;
  width: 238px;
  justify-items: center;
  background: transparent;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: 53px;
  object-fit: contain;
}

.brand__tagline {
  margin-top: 2px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.brand__tagline i {
  color: var(--signal-dark);
  font-style: normal;
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.masthead__actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  display: block;
  text-align: right;
  text-decoration: none;
}

.phone-link small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.phone-link strong {
  display: block;
  margin-top: 6px;
  font-family: "SC Display", sans-serif;
  font-size: 16px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.masthead__catalog {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 16px 0 18px;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.masthead__catalog b { color: var(--ink); font-size: 16px; }

.masthead__catalog:hover,
.masthead__catalog:focus-visible {
  border-color: var(--ink);
  background: #ff7a36;
  color: var(--ink);
}

.masthead__catalog:hover b,
.masthead__catalog:focus-visible b { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  padding: 32px 0 44px;
}

.hero::before {
  content: "СЕРДЦЕ ЦЕХА / 2026";
  position: absolute;
  top: 46%;
  right: -74px;
  color: #77736b;
  font-family: "SC Display", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: stretch;
}

.hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-top: 8px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 8px;
  background: var(--signal);
}

h1 {
  margin: 0;
  font-family: "SC Display", "Arial Narrow", sans-serif;
  font-size: clamp(82px, 8.25vw, 126px);
  font-stretch: condensed;
  font-weight: 820;
  line-height: .77;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

h1 span { display: block; }

h1 .line-two {
  margin-left: 13%;
  color: var(--signal);
  font-size: 1.08em;
}

.hero__statement {
  max-width: 650px;
  margin: 32px 0 0;
  padding: 20px 0 0 25%;
  border-top: 1px solid var(--ink);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.42;
}

.hero__statement strong { font-weight: 900; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 21px 0 24px;
  border: 2px solid var(--signal);
  background: var(--signal);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .015em;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.button::after {
  content: "→";
  font-family: "SC Display", sans-serif;
  font-size: 22px;
  line-height: 1;
  transition: transform .18s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--ink);
  background: #ff7a36;
  color: var(--ink);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after { transform: translateX(4px); }

.button--dark {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: var(--ink);
  background: #ff7a36;
  color: var(--ink);
}

.domain-note {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.domain-note b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .01em;
  text-transform: none;
}

.hero__visual {
  position: relative;
  min-height: 554px;
  margin-top: 9px;
}

.hero__figure {
  position: absolute;
  inset: 0 0 44px 0;
  margin: 0;
  overflow: hidden;
  background: #262623;
}

.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.82) contrast(1.06);
  transform: scale(1.01);
}

.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: inset 0 -150px 120px -120px rgba(0, 0, 0, .62);
  pointer-events: none;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: -58px;
  display: grid;
  width: 118px;
  height: 118px;
  overflow: hidden;
  place-items: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: #000;
  box-shadow: 0 14px 34px rgba(23, 23, 21, .18);
}

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

.figure-index {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .65);
  color: #fff;
  font-family: "SC Display", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.figure-caption {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 12%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 126px;
  gap: 28px;
  padding: 20px 23px;
  background: var(--signal);
  color: var(--ink);
}

.figure-caption small {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.figure-caption strong {
  display: block;
  font-family: "SC Display", sans-serif;
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 850;
  line-height: .92;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.figure-caption > span {
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.hero__ledger {
  display: grid;
  grid-template-columns: .7fr 1fr 1fr;
  margin-top: 26px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ledger-item {
  min-width: 0;
  padding: 15px 20px 15px 0;
}

.ledger-item + .ledger-item {
  padding-left: 20px;
  border-left: 1px solid var(--ink);
}

.ledger-item b {
  display: block;
  font-family: "SC Display", sans-serif;
  font-size: 23px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.02em;
}

.ledger-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.catalogue {
  padding: 66px 0 70px;
  border-top: 1px solid var(--ink);
  background: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) minmax(240px, 390px);
  align-items: start;
  gap: 36px;
  margin-bottom: 40px;
}

.section-no {
  padding-top: 8px;
  color: var(--signal);
  font-family: "SC Display", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.section-head h2,
.contacts__head h2 {
  margin: 0;
  font-family: "SC Display", sans-serif;
  font-size: clamp(42px, 4.55vw, 70px);
  font-weight: 850;
  line-height: .92;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.section-head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.machine-card {
  position: relative;
  grid-column: span 4;
  min-height: 282px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  color: #fff;
  text-decoration: none;
}

.machine-card:nth-child(1),
.machine-card:nth-child(5) { grid-column: span 5; }

.machine-card:nth-child(2),
.machine-card:nth-child(6) { grid-column: span 3; }

.machine-card img {
  width: 100%;
  height: 100%;
  min-height: 282px;
  object-fit: cover;
  filter: saturate(.62) contrast(1.05) brightness(.77);
  transition: transform .35s ease, filter .35s ease;
}

.machine-card:nth-child(6) img { object-position: center 37%; }

.machine-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -190px 130px -110px rgba(0, 0, 0, .82);
  pointer-events: none;
}

.machine-card__copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.machine-card strong {
  font-family: "SC Display", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.machine-card__copy > span {
  flex: 0 0 auto;
  color: var(--signal);
  font-size: 22px;
}

.machine-card:hover img,
.machine-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(.82) contrast(1.08) brightness(.83);
}

.catalogue__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.catalogue__footer p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.text-link span { color: var(--signal); }

.process {
  padding: 72px 0 76px;
  background: var(--ink);
  color: #fff;
}

.process__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.process__head h2 {
  max-width: 820px;
  margin: 0;
  font-family: "SC Display", sans-serif;
  font-size: clamp(42px, 5.15vw, 78px);
  font-weight: 850;
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.process__head h2 em { color: var(--signal); font-style: normal; }

.process__head p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.step {
  min-height: 174px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.step:first-child { padding-left: 0; border-left: 0; }

.step > b {
  color: var(--signal);
  font-family: "SC Display", sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
}

.step h3 {
  margin: 32px 0 9px;
  font-family: "SC Display", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  line-height: 1.5;
}

.process__note {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  letter-spacing: .02em;
}

.relationship {
  padding: 78px 0;
  background: var(--paper-2);
}

.relationship__grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.relationship__mark {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  box-shadow: 28px 28px 0 var(--signal);
}

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

.relationship__copy h2 {
  margin: 0;
  font-family: "SC Display", sans-serif;
  font-size: clamp(37px, 4.2vw, 64px);
  font-weight: 850;
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.relationship__copy h2 span { color: var(--signal-dark); }

.relationship__copy > p:not(.eyebrow) {
  max-width: 740px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contacts {
  padding: 74px 0 78px;
  border-top: 1px solid var(--ink);
  background: var(--white);
}

.contacts__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: end;
  gap: 50px;
  margin-bottom: 40px;
}

.contacts__head .section-no { display: block; margin-bottom: 14px; }

.contacts__head > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.contact-grid > a {
  min-width: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
}

.contact-primary {
  grid-column: span 6;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--signal);
  transition: background .2s ease, color .2s ease;
}

.contact-primary small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-primary strong {
  font-family: "SC Display", sans-serif;
  font-size: clamp(33px, 4vw, 58px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.contact-primary > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-primary > span b { font-size: 18px; }

.contact-primary:hover,
.contact-primary:focus-visible { background: #ff7a36; color: var(--ink); }

.contact-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  overflow: hidden;
  background: var(--paper);
  transition: background .2s ease, color .2s ease;
}

.contact-card b {
  position: relative;
  z-index: 2;
  font-family: "SC Display", sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card span {
  position: relative;
  z-index: 2;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.contact-card .contact-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
  overflow: hidden;
}

.contact-icon svg { width: 26px; height: 26px; fill: #fff; }
.contact-icon--telegram { background: linear-gradient(135deg, #2aabee, #229ed9); }
.contact-icon--vk { background: linear-gradient(135deg, #0077ff, #0059c2); }
.contact-icon--max { border: 1px solid rgba(23, 23, 21, .18); background: #fff; }
.contact-icon--max img { width: 100%; height: 100%; object-fit: cover; }

.contact-card:hover,
.contact-card:focus-visible { background: var(--ink); color: #fff; }
.contact-card:hover span,
.contact-card:focus-visible span { color: rgba(255, 255, 255, .68); }
.contact-card:hover .contact-icon,
.contact-card:focus-visible .contact-icon { box-shadow: 0 0 0 2px var(--signal); }

.final-cta {
  padding: 40px 0;
  background: var(--signal);
  color: var(--ink);
}

.final-cta .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.final-cta h2 {
  margin: 0;
  font-family: "SC Display", sans-serif;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 850;
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.button--light {
  border-color: var(--ink);
  background: #ff7a36;
  color: var(--ink);
  box-shadow: 6px 6px 0 rgba(23, 23, 21, .22);
}

.button--light:hover,
.button--light:focus-visible { background: var(--white); color: var(--ink); }

.footer {
  padding: 54px 0 28px;
  background: var(--ink);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(390px, 1.45fr) minmax(220px, .72fr) minmax(190px, .55fr);
  align-items: start;
  gap: clamp(40px, 6vw, 88px);
}

.footer__brand {
  display: inline-grid;
  justify-items: center;
  text-decoration: none;
}

.footer__brand img {
  display: block;
  width: min(100%, 370px);
  height: auto;
  object-fit: contain;
  background: transparent;
}

.footer__brand-tagline {
  margin-top: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}

.footer__brand-tagline i {
  color: var(--signal);
  font-style: normal;
}

.footer__intro > p {
  max-width: 530px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.55;
}

.footer__socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.footer-social {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  border-color: var(--signal);
  background: rgba(255, 90, 10, .08);
  transform: translateY(-2px);
}

.footer-social__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
}

.footer-social__icon svg { width: 21px; height: 21px; fill: #fff; }
.footer-social__icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-social--telegram .footer-social__icon { background: linear-gradient(135deg, #2aabee, #229ed9); }
.footer-social--vk .footer-social__icon { background: linear-gradient(135deg, #0077ff, #0059c2); }
.footer-social--max .footer-social__icon { background: #fff; }

.footer-social > span:last-child { display: grid; min-width: 0; gap: 2px; }
.footer-social strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.footer-social small { overflow: hidden; color: rgba(255, 255, 255, .52); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }

.footer__column { display: grid; align-content: start; gap: 2px; }

.footer__column h3 {
  margin: 0 0 15px;
  color: var(--signal);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer__column a,
.footer__column address {
  display: flex;
  min-height: 36px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
  text-underline-offset: 4px;
}

.footer__column a:hover,
.footer__column a:focus-visible { color: #fff; }

.footer__contacts .footer__phone {
  color: #fff;
  font-family: "SC Display", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .masthead__row { grid-template-columns: auto 1fr auto; gap: 18px; }
  .brand { width: 210px; }
  .menu-toggle { grid-column: 2; display: block; justify-self: end; }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px var(--pad) 20px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(23, 23, 21, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 13px;
  }

  .site-nav a::after { display: none; }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .84fr);
    gap: 42px;
  }

  h1 { font-size: clamp(72px, 9vw, 102px); }
  .hero__statement { padding-left: 12%; }
  .hero-seal { left: -38px; width: 98px; height: 98px; border-width: 7px; }
  .hero__visual { min-height: 520px; }
  .figure-caption { left: 7%; }

  .section-head { grid-template-columns: 90px minmax(0, 1fr); }
  .section-head p { grid-column: 2; }
  .relationship__grid { grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr); }
}

@media (max-width: 980px) {
  .phone-link { display: none; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr); gap: 28px; }
  .hero__visual { min-height: 490px; }
  .hero__statement { padding-left: 0; }
  .machine-card,
  .machine-card:nth-child(n) { grid-column: span 6; }
  .contact-primary { grid-column: span 12; }
  .contact-card { grid-column: span 4; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__intro { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --pad: 24px; }
  .masthead__row { min-height: 80px; }
  .brand { width: 188px; }
  .brand img { height: 44px; }
  .brand__tagline { font-size: 6.6px; }

  .hero { padding-top: 26px; }
  .hero::before { display: none; }
  .hero__grid { display: block; }
  h1 { font-size: clamp(78px, 16.5vw, 118px); }
  h1 .line-two { margin-left: 8%; }
  .hero__statement { margin-top: 24px; padding-top: 17px; }
  .hero__actions { margin-top: 25px; padding-top: 0; }
  .hero__visual { min-height: 510px; margin-top: 38px; }
  .hero-seal { top: -30px; right: 18px; left: auto; }
  .figure-caption { left: 0; }

  .process__head { display: block; }
  .process__head p { margin-top: 20px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .step:nth-child(3) { padding-left: 0; border-left: 0; }

  .relationship__grid { grid-template-columns: 210px minmax(0, 1fr); gap: 46px; }
  .relationship__mark { box-shadow: 18px 18px 0 var(--signal); }

  .contacts__head { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 650px) {
  :root { --pad: 20px; }
  .masthead__row { grid-template-columns: auto 1fr auto; min-height: 72px; gap: 10px; }
  .brand { width: 158px; }
  .brand img { height: 38px; }
  .brand__tagline { font-size: 5.6px; }
  .menu-toggle { width: 42px; height: 42px; }
  .masthead__catalog { width: 42px; min-height: 42px; padding: 0; }
  .masthead__catalog span { display: none; }
  .masthead__catalog b { font-size: 19px; }

  .hero__ledger { grid-template-columns: 1fr; }
  .ledger-item { padding: 14px 0; }
  .ledger-item + .ledger-item { padding-left: 0; border-top: 1px solid var(--ink); border-left: 0; }

  .section-head { display: block; }
  .section-no { display: block; margin-bottom: 12px; }
  .section-head p { margin-top: 18px; }
  .machine-card,
  .machine-card:nth-child(n) { grid-column: span 12; }

  .catalogue__footer { grid-template-columns: 1fr; gap: 18px; }
  .relationship__grid { grid-template-columns: 1fr; }
  .relationship__mark { width: min(72vw, 300px); margin-inline: auto; }
  .relationship__copy .button { width: 100%; }

  .contact-card { grid-column: span 12; min-height: 132px; }

  .final-cta .shell { grid-template-columns: 1fr; }
  .final-cta .button { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__intro { grid-column: auto; }
  .footer__socials { grid-template-columns: 1fr; }
  .footer-social { min-height: 58px; }
  .footer-social strong { font-size: 14px; }
  .footer-social small { font-size: 11px; }
  .footer__bottom { display: grid; justify-content: start; line-height: 1.5; }
}

@media (max-width: 430px) {
  :root { --pad: 17px; }
  .brand { width: 148px; }
  .brand img { height: 35px; }
  .brand__tagline { font-size: 5.2px; }
  .menu-toggle { width: 40px; height: 40px; padding: 10px; }
  .masthead__catalog { width: 40px; min-height: 40px; }

  .eyebrow { font-size: 9px; letter-spacing: .1em; }
  h1 { font-size: min(19vw, 74px); }
  .hero__statement { font-size: 15px; }
  .hero__actions { display: block; }
  .button { width: 100%; min-height: 56px; gap: 18px; padding-inline: 18px; }
  .domain-note { display: block; margin-top: 13px; }

  .hero__visual { min-height: 432px; }
  .hero__figure { bottom: 48px; }
  .hero-seal { width: 84px; height: 84px; border-width: 6px; }
  .figure-caption { min-height: 106px; padding: 16px; gap: 14px; }
  .figure-caption strong { font-size: 25px; }
  .figure-caption > span { font-size: 9px; }

  .catalogue,
  .contacts { padding-block: 54px; }
  .machine-card,
  .machine-card img { min-height: 250px; }

  .process { padding-block: 56px; }
  .steps { grid-template-columns: 1fr; }
  .step,
  .step:nth-child(n) {
    min-height: auto;
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    border-left: 0;
  }
  .step h3 { margin-top: 18px; }

  .relationship { padding-block: 62px; }
  .relationship__copy h2 { font-size: 34px; }

  .contact-primary { min-height: 170px; padding: 18px; }
  .contact-primary strong { font-size: 30px; }
  .contact-card { min-height: 120px; padding: 18px; }
  .footer__brand img { width: min(100%, 300px); height: auto; }
  .footer__brand-tagline { font-size: 11px; }
}

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