/* Existing landing styles in original cascade order. */

:root {
  --ink: #181818;
  --muted: #636363;
  --line: #d9d9d9;
  --paper: #fff;
  --soft: #f3f3f3;
  --dark: #202020;
  --space: 104px;
  --radius: 3px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}
body {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(40px, 4.6vw, 68px);
}
h2 {
  font-size: clamp(32px, 3.2vw, 48px);
}
h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin: auto;
}
.section {
  padding: var(--space) 0;
}
.soft {
  background: var(--soft);
}
.dark {
  background: var(--dark);
  color: #fff;
}
.dark p {
  color: #bbb;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 25px;
}
.eyebrow:before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
}
.intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}
.intro h2 {
  max-width: 790px;
}
.intro p {
  max-width: 340px;
}
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn:hover {
  background: #393939;
  transform: translateY(-1px);
}
.btn:after {
  content: "↗";
  font-size: 20px;
  line-height: 1;
}
.btn.light {
  background: white;
  color: var(--ink);
  border-color: white;
}
.btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: #b5b5b5;
}
.btn.outline:hover {
  background: #e9e9e9;
}
.dark .btn.outline {
  color: white;
  border-color: #666;
}
.dark .btn.outline:hover {
  background: #333;
}
.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  background: transparent;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
}
.text-link:after {
  content: "↗";
  font-size: 18px;
}
.fine {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.number {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #828282;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  background: white;
  padding: 15px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
:focus-visible {
  outline: 2px solid #797979;
  outline-offset: 5px;
}
header {
  height: 92px;
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  flex-shrink: 0;
  font-size: 31px;
  letter-spacing: -0.06em;
  font-weight: 700;
  line-height: 1;
}
.brand span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  margin-top: 9px;
  font-weight: 400;
}
.desktop-nav {
  display: flex;
  gap: 25px;
  margin: auto;
  font-size: 13px;
}
.desktop-nav a:hover {
  border-bottom: 1px solid;
}
.messengers {
  display: flex;
  gap: 7px;
}
.messenger {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  padding: 8px;
}
.messenger svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.phone {
  font-size: 17px;
  white-space: nowrap;
  font-weight: 600;
}
.header-contact {
  text-align: right;
}
.header-contact .fine {
  font-size: 11px;
}
.availability {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-size: 10px;
  margin-left: 8px;
  font-weight: 400;
}
.availability:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #777;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  background: #242424;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-position: center 55%;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.84),
    rgba(0, 0, 0, 0.53) 53%,
    rgba(0, 0, 0, 0.05)
  );
  z-index: -1;
}
.hero-content {
  padding: 80px 0 38px;
}
.hero .eyebrow {
  color: #d5d5d5;
}
.hero h1 {
  max-width: 890px;
  margin-bottom: 24px;
}
.hero h1 span {
  color: #bdbdbd;
}
.hero .sub {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.6;
  color: #ddd;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0 66px;
}
.hero-actions .fine {
  color: #d2d2d2;
  max-width: 190px;
}
.hero-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ffffff45;
  padding-top: 26px;
  gap: 30px;
}
.hero-bottom strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.hero-bottom p {
  color: #bdbdbd;
  font-size: 13px;
}
.section-title-small {
  font-size: 18px;
}
.business-card {
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.business-card:hover {
  border-color: #333;
  background: #fafafa;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.line-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}
.business-card h3 {
  margin-bottom: 14px;
}
.business-card p {
  font-size: 14px;
  flex: 1;
}
.business-card button {
  align-self: start;
  margin-top: 18px;
}
.facts {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  margin-top: 56px;
}
.facts h3 {
  font-size: 27px;
  max-width: 310px;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fact strong {
  font-size: 47px;
  letter-spacing: -0.05em;
  font-weight: 400;
  line-height: 1.1;
  display: block;
  margin-bottom: 9px;
}
.fact span {
  font-size: 13px;
  color: var(--muted);
}
.clients {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  font-size: 14px;
}
.clients .label {
  font-size: 12px;
  color: var(--muted);
  max-width: 160px;
}
.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  gap: 20px;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 19px;
  border-radius: 2px;
  font-size: 13px;
  min-height: 42px;
}
.chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.count {
  font-size: 12px;
  color: var(--muted);
}
.product {
  background: white;
  border: 1px solid var(--line);
  min-width: 0;
}
.product-photo {
  height: 265px;
  position: relative;
  overflow: hidden;
}
.product-photo img {
  transition: transform 0.6s;
}
.product:hover img {
  transform: scale(1.035);
}
.tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: 0.03em;
}
.product-content {
  padding: 23px;
}
.product-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.product-title h3 {
  font-size: 25px;
}
.swatches {
  display: flex;
  gap: 4px;
}
.swatches i {
  width: 11px;
  height: 11px;
  border: 1px solid #aaa;
  border-radius: 50%;
  background: #ddd;
}
.swatches i:nth-child(2) {
  background: #888;
}
.swatches i:nth-child(3) {
  background: #333;
}
.spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #ececec;
  padding: 9px 0;
  font-size: 12px;
}
.spec span {
  color: var(--muted);
}
.product .btn {
  width: 100%;
  margin-top: 15px;
  background: white;
  color: #171717;
  border-color: #aaa;
  min-height: 47px;
}
.product .btn:hover {
  background: #eee;
}
.catalog-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 25px;
}
.catalog-foot .fine {
  max-width: 490px;
}
.conditions {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
}
.conditions h2 {
  margin-bottom: 23px;
}
.conditions p {
  max-width: 425px;
  margin-bottom: 27px;
}
.condition-list {
  border-top: 1px solid var(--line);
}
.condition-row {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.condition-row h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}
.condition-row p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.matrix h2 {
  margin-bottom: 24px;
}
.matrix p {
  margin-bottom: 25px;
}
.checklist {
  padding: 0;
  margin: 25px 0 32px;
  list-style: none;
}
.checklist li {
  padding: 10px 0 10px 29px;
  position: relative;
  font-size: 14px;
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
}
.matrix-visual {
  background: white;
  color: var(--ink);
  padding: 30px;
  border: 1px solid #fff;
  position: relative;
}
.matrix-visual .label-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.matrix-visual h3 {
  margin: 22px 0;
  font-size: 24px;
}
.matrix-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.matrix-item img {
  height: 58px;
}
.matrix-item p {
  font-size: 11px;
  color: #777;
  margin: 4px 0 0;
}
.matrix-total {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  font-size: 12px;
}
.calculator {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 1px solid var(--line);
}
.calc-inputs {
  padding: 38px;
}
.calc-result {
  padding: 38px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.field label,
.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 9px;
}
.input-wrap {
  position: relative;
}
.input-wrap input {
  padding-right: 58px;
}
.unit {
  position: absolute;
  right: 14px;
  top: 16px;
  color: var(--muted);
  font-size: 13px;
}
input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #c5c5c5;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  min-height: 52px;
  font-size: 15px;
}
input:focus,
textarea:focus,
select:focus {
  outline: 1px solid #333;
  border-color: #333;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: #222;
}
input[type="file"] {
  font-size: 13px;
  padding: 13px;
  background: transparent;
}
textarea {
  resize: vertical;
  min-height: 110px;
}
.calc-inputs > .fine {
  margin-top: 24px;
}
.calc-result .number {
  margin-bottom: 14px;
}
.margin-value {
  font-size: 68px;
  letter-spacing: -0.06em;
  line-height: 1.1;
}
.calc-result h3 {
  font-size: 16px;
  margin: 6px 0 27px;
  letter-spacing: 0;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding: 11px 0;
  gap: 15px;
}
.calc-result .btn {
  margin-top: 24px;
}
.calc-result .fine {
  margin-top: 12px;
}
.private-label {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.private-photo {
  position: relative;
  min-height: 500px;
}
.private-photo img {
  position: absolute;
  inset: 0;
}
.private-photo .photo-label {
  position: absolute;
  bottom: 25px;
  left: 30px;
  background: #fff;
  padding: 13px 18px;
  font-size: 12px;
}
.private-copy {
  padding: 70px 56px;
  background: var(--soft);
}
.private-copy h2 {
  margin-bottom: 24px;
}
.private-copy p {
  font-size: 15px;
}
.private-copy .fine {
  margin-top: 15px;
}
.sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.sample-art {
  position: relative;
  height: 475px;
  overflow: hidden;
}
.sample-art .sample-caption {
  position: absolute;
  left: 25px;
  bottom: 25px;
  padding: 15px 20px;
  background: #fff;
  font-size: 12px;
  max-width: 220px;
}
.sample-copy h2 {
  margin-bottom: 25px;
}
.sample-copy .checklist {
  margin-top: 15px;
}
.sample-copy .fine {
  margin-top: 15px;
}
.process-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 45px;
}
.process-head .btn {
  margin-top: 24px;
}
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
}
.process-step {
  padding: 28px;
  border-left: 1px solid #555;
}
.process-step:first-child {
  border-left: 0;
  padding-left: 0;
}
.process-step .number {
  color: #aaa;
}
.process-step h3 {
  font-size: 21px;
  margin: 35px 0 15px;
}
.process-step p {
  font-size: 13px;
}
.process-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 25px;
}
.process-bottom p {
  max-width: 610px;
  font-size: 13px;
}
.benefit {
  border-top: 1px solid var(--line);
  padding: 25px 0 10px;
}
.benefit h3 {
  margin: 24px 0 15px;
  font-size: 23px;
  max-width: 310px;
}
.benefit p {
  font-size: 14px;
  max-width: 340px;
}
.benefits {
  row-gap: 35px;
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 85px;
}
.quality-grid h2 {
  margin-bottom: 25px;
}
.quality-grid .btn {
  margin-top: 28px;
}
.quality-table {
  border-top: 1px solid #aaa;
}
.quality-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 25px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.quality-row span {
  color: var(--muted);
}
.document-card {
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.doc-icon {
  width: 39px;
  height: 48px;
  border: 1px solid #999;
  padding: 12px 7px;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #666;
}
.document-card h3 {
  font-size: 22px;
}
.document-card p {
  font-size: 14px;
  flex: 1;
}
.document-card .text-link {
  align-self: start;
}
.repeat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  border: 1px solid var(--line);
  padding: 46px;
}
.repeat-panel h2 {
  margin-bottom: 22px;
}
.repeat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.repeat-list li {
  position: relative;
  padding: 0 0 24px 42px;
  font-size: 14px;
  counter-increment: step;
}
.repeat-list li:before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  color: #888;
  font-size: 12px;
  top: 2px;
}
.repeat-list strong {
  font-weight: 500;
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}
.repeat-list span {
  color: var(--muted);
}
.repeat-list li:last-child {
  padding-bottom: 0;
}
.logistics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.logistics h2 {
  margin-bottom: 24px;
}
.geo {
  background: white;
  border: 1px solid var(--line);
  padding: 32px;
}
.geo-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 28px;
}
.geo-title strong {
  font-size: 40px;
  letter-spacing: -0.05em;
  font-weight: 400;
  line-height: 1;
}
.geo-title span {
  font-size: 12px;
  max-width: 120px;
}
.geo-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.geo-regions div {
  font-size: 19px;
  line-height: 1.2;
}
.geo-regions span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.geo .fine {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.logistics .fine {
  margin-top: 18px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  align-items: start;
}
.faq-col {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 32px 23px 0;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 19px;
  font-size: 23px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  padding: 0 32px 24px 0;
  font-size: 14px;
  line-height: 1.7;
}
.faq-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.final-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
}
.final-grid h2 {
  font-size: 45px;
  margin-bottom: 24px;
}
.final-grid .lead {
  font-size: 17px;
}
.final-steps {
  border-top: 1px solid #555;
  margin-top: 40px;
  padding-top: 25px;
}
.final-steps p {
  font-size: 14px;
  padding: 8px 0;
}
.final-steps span {
  color: #888;
  display: inline-block;
  width: 30px;
}
.lead-form {
  background: white;
  color: var(--ink);
  padding: 35px;
}
.lead-form h3 {
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field.full {
  grid-column: 1/-1;
}
.segmented {
  display: flex;
  gap: 10px;
}
.segmented label {
  position: relative;
  flex: 1;
  border: 1px solid var(--line);
  padding: 13px;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
}
.segmented label:has(input:checked) {
  background: #222;
  color: white;
  border-color: #222;
}
.segmented input {
  position: absolute;
  opacity: 0;
  min-height: 0;
  width: 1px;
}
.segmented label:focus-within {
  outline: 2px solid #888;
  outline-offset: 2px;
}
.agree {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 11px;
  line-height: 1.55;
  color: #666;
  margin: 19px 0;
}
.agree input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex-shrink: 0;
}
.agree button {
  border: 0;
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: inherit;
  color: inherit;
}
.lead-form > .btn {
  width: 100%;
}
.form-note {
  color: #666 !important;
  font-size: 11px;
  margin-top: 12px;
}
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
}
.contacts h2 {
  margin-bottom: 32px;
}
.contacts .big-phone {
  font-size: 32px;
  letter-spacing: -0.04em;
  display: inline-block;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  gap: 15px;
  margin-top: 22px;
}
.address {
  background: var(--soft);
  padding: 36px;
}
.address h3 {
  margin: 22px 0 16px;
  font-size: 25px;
}
.address p {
  font-size: 15px;
}
.address .text-link {
  margin-top: 20px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 38px 0 25px;
}
.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 35px;
}
.footer-top nav {
  display: flex;
  gap: 25px;
  font-size: 13px;
  flex-wrap: wrap;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #777;
}
.footer-bottom button {
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}
.sticky-mobile {
  display: none;
}
dialog {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  width: min(550px, calc(100% - 30px));
  max-height: 90dvh;
  box-shadow: 0 20px 90px #0004;
}
dialog::backdrop {
  background: #0009;
  backdrop-filter: blur(3px);
}
.dialog-inner {
  padding: 35px;
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 9px;
  background: transparent;
  border: 0;
  font-size: 28px;
  min-width: 40px;
  min-height: 40px;
}
.dialog-inner h2 {
  font-size: 31px;
  margin: 12px 0 15px;
  padding-right: 15px;
}
.dialog-inner > p {
  font-size: 14px;
  margin-bottom: 24px;
}
.modal-form {
  display: grid;
  gap: 16px;
}
.modal-form .agree {
  margin: 0;
}
.draft {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 13px;
  white-space: pre-wrap;
  max-height: 280px;
  overflow: auto;
}
.dialog-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.success-title {
  font-size: 27px;
}
.status-message {
  font-size: 13px;
  margin-top: 14px;
  color: #555;
}
.modal-notice {
  font-size: 12px !important;
}
.mobile-nav {
  display: none;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 95px;
    padding-bottom: 45px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 20px;
  }
  .desktop-nav {
    gap: 16px;
    font-size: 12px;
  }
  .header-contact .availability {
    display: none;
  }
  .header-contact .phone {
    font-size: 14px;
  }
  .messengers {
    gap: 4px;
  }
  .conditions,
  .quality-grid,
  .final-grid {
    gap: 45px;
  }
  .private-copy {
    padding: 48px 35px;
  }
  .hero h1 {
    max-width: 740px;
  }
  .product-photo {
    height: 215px;
  }
}
@media (max-width: 900px) {
  :root {
    --space: 76px;
  }
  .desktop-nav,
  .header-inner > .messengers {
    display: none;
  }
  .header-contact {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
    border: 1px solid var(--line);
    background: white;
    min-width: 42px;
    min-height: 42px;
    font-size: 22px;
  }
  .mobile-nav.open {
    display: flex;
    position: absolute;
    top: 91px;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 32px;
    flex-direction: column;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero .sub {
    font-size: 17px;
    max-width: 580px;
  }
  .intro {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .intro p {
    max-width: 540px;
  }
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .facts {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .facts h3 {
    max-width: 500px;
  }
  .matrix,
  .sample-grid,
  .logistics {
    gap: 35px;
  }
  .matrix-visual {
    padding: 22px;
  }
  .calculator {
    grid-template-columns: 1fr 1fr;
  }
  .calc-inputs,
  .calc-result {
    padding: 25px;
  }
  .field-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .private-copy h2 {
    font-size: 33px;
  }
  .process-head {
    gap: 40px;
  }
  .process-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:nth-child(3) {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid #555;
  }
  .process-step:nth-child(4) {
    border-top: 1px solid #555;
  }
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .repeat-panel {
    gap: 35px;
    padding: 32px;
  }
  .final-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .final-grid h2 {
    max-width: 650px;
  }
  .final-steps {
    display: none;
  }
  .contacts {
    gap: 40px;
  }
  .footer-top nav {
    max-width: 400px;
  }
  .document-card:last-child {
    grid-column: 1/-1;
  }
  .hero-bottom strong {
    font-size: 20px;
  }
}
@media (max-width: 620px) {
  :root {
    --space: 58px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  html {
    scroll-padding-top: 84px;
  }
  header {
    height: 75px;
  }
  .brand {
    font-size: 25px;
  }
  .brand span {
    font-size: 6.5px;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }
  .header-hours {
    display: none;
  }
  .header-contact .phone {
    font-size: 13px;
  }
  .header-contact .fine {
    font-size: 9px;
  }
  .header-inner {
    gap: 12px;
  }
  .mobile-nav.open {
    top: 74px;
  }
  .hero-content {
    padding: 46px 0 25px;
  }
  .hero h1 {
    font-size: 39px;
    letter-spacing: -0.045em;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .hero .sub {
    font-size: 16px;
    line-height: 1.6;
  }
  .hero:after {
    background: linear-gradient(90deg, #000d, #0008);
  }
  .hero-actions {
    margin: 26px 0 37px;
    display: block;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-actions .fine {
    margin-top: 13px;
    max-width: none;
    font-size: 11px;
  }
  .hero-bottom {
    gap: 16px;
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .hero-bottom > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }
  .hero-bottom strong {
    font-size: 18px;
    margin: 0;
    flex-shrink: 0;
  }
  .hero-bottom p {
    font-size: 11px;
    text-align: right;
    max-width: 190px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 19px;
  }
  h2 {
    font-size: 33px;
  }
  .intro {
    margin-bottom: 28px;
    gap: 16px;
  }
  .intro p {
    font-size: 15px;
  }
  .grid3,
  .grid2,
  .conditions,
  .matrix,
  .calculator,
  .private-label,
  .sample-grid,
  .process-head,
  .repeat-panel,
  .logistics,
  .faq-grid,
  .contacts {
    grid-template-columns: 1fr;
  }
  .grid3 {
    gap: 14px;
  }
  .business-card {
    min-height: 235px;
    padding: 24px;
  }
  .card-top {
    margin-bottom: 20px;
  }
  .business-card p {
    font-size: 15px;
  }
  .facts {
    margin-top: 35px;
    padding-top: 29px;
  }
  .fact-grid {
    gap: 13px;
  }
  .fact strong {
    font-size: 35px;
  }
  .fact span {
    font-size: 11px;
  }
  .clients {
    gap: 18px;
    font-size: 12px;
  }
  .clients .label {
    max-width: none;
    width: 100%;
  }
  .filters {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .chip {
    font-size: 12px;
    padding: 10px 14px;
  }
  .count {
    align-self: end;
  }
  .product-photo {
    height: 245px;
  }
  .product-content {
    padding: 21px;
  }
  .catalog-foot {
    align-items: start;
    flex-direction: column;
  }
  .catalog-foot .btn {
    width: 100%;
  }
  .conditions {
    gap: 32px;
  }
  .conditions p {
    font-size: 15px;
  }
  .matrix {
    gap: 35px;
  }
  .matrix-item {
    grid-template-columns: 48px 1fr auto;
  }
  .matrix-item img {
    height: 50px;
  }
  .matrix-visual {
    padding: 22px;
  }
  .calc-inputs,
  .calc-result {
    padding: 25px 22px;
  }
  .field-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }
  .field label {
    font-size: 12px;
  }
  .margin-value {
    font-size: 57px;
  }
  .private-photo {
    min-height: 330px;
    order: 2;
  }
  .private-copy {
    padding: 40px 25px;
  }
  .sample-art {
    height: 340px;
  }
  .sample-copy {
    order: -1;
  }
  .process-head {
    gap: 25px;
  }
  .process-step {
    padding: 25px 16px;
  }
  .process-step h3 {
    font-size: 19px;
  }
  .process-step p {
    font-size: 12px;
  }
  .process-bottom {
    align-items: start;
    flex-direction: column;
  }
  .benefits {
    gap: 24px;
  }
  .benefit h3 {
    max-width: none;
    font-size: 23px;
  }
  .benefit p {
    max-width: none;
  }
  .quality-row {
    grid-template-columns: 1fr 1.4fr;
    gap: 15px;
    font-size: 13px;
  }
  .document-card:last-child {
    grid-column: auto;
  }
  .repeat-panel {
    padding: 27px;
    gap: 30px;
  }
  .geo {
    padding: 25px;
  }
  .faq-grid {
    gap: 0;
  }
  .faq-col + .faq-col {
    border-top: 0;
  }
  summary {
    font-size: 15px;
  }
  .faq-foot {
    align-items: start;
    flex-direction: column;
  }
  .final-grid h2 {
    font-size: 34px;
  }
  .lead-form {
    padding: 25px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full {
    grid-column: auto;
  }
  .segmented {
    gap: 8px;
  }
  .segmented label {
    font-size: 12px;
  }
  .contacts .big-phone {
    font-size: 29px;
  }
  .address {
    padding: 27px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-top nav {
    gap: 17px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  footer {
    padding-bottom: 100px;
  }
  .sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 19;
    background: white;
    border-top: 1px solid var(--line);
    padding: 9px 18px calc(9px + env(safe-area-inset-bottom));
    display: flex;
    gap: 10px;
  }
  .sticky-mobile .btn {
    flex: 1;
    min-height: 45px;
    font-size: 12px;
    padding: 10px 15px;
  }
  .sticky-mobile .call {
    border: 1px solid var(--line);
    min-width: 47px;
    display: grid;
    place-items: center;
    font-size: 22px;
  }
  .dialog-inner {
    padding: 28px 22px;
  }
  .dialog-inner h2 {
    font-size: 27px;
  }
  .btn {
    font-size: 13px;
  }
  .document-card {
    padding: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
@media print {
  header,
  .sticky-mobile,
  dialog {
    display: none !important;
  }
  .section {
    padding: 40px 0;
  }
  .wrap {
    width: 94%;
  }
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .product,
  .business-card,
  details {
    break-inside: avoid;
  }
}

/* Neutral media placeholders: replace these elements with real photos without changing their parent dimensions. */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #858585;
  overflow: hidden;
  text-align: center;
  padding: 18px;
}
.placeholder-mark {
  font-weight: 400;
  font-size: 27px;
  line-height: 1;
  color: #969696;
}
.placeholder-label {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  max-width: 220px;
}
.hero > .image-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(110deg, #252525, #4c4c4c);
  align-items: flex-end;
  justify-content: center;
  padding-right: 7%;
  color: #aeaeae;
}
.hero > .image-placeholder .placeholder-mark {
  color: #999;
}
.hero:after {
  background: linear-gradient(90deg, #181818b8, transparent);
}
.hero > .image-placeholder .placeholder-label {
  max-width: 130px;
}
.private-photo > .image-placeholder {
  position: absolute;
  inset: 0;
}
.matrix-item > .image-placeholder {
  width: 56px;
  height: 58px;
  padding: 3px;
  gap: 0;
}
.matrix-item .placeholder-label {
  display: none;
}
.matrix-item .placeholder-mark {
  font-size: 18px;
}
.sample-art > .image-placeholder {
  background: #dedede;
}
.product-photo > .image-placeholder {
  background: #e4e4e4;
}
.product:nth-child(2n) .image-placeholder {
  background: #d9d9d9;
}
.product:nth-child(3n) .image-placeholder {
  background: #ececec;
}
@media (max-width: 900px) {
  .hero > .image-placeholder {
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
  }
  .hero > .image-placeholder span {
    display: none;
  }
}
@media (max-width: 620px) {
  .matrix-item > .image-placeholder {
    width: 48px;
    height: 50px;
  }
}

/* September 16 editorial revision */
header .brand span {
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.3;
  max-width: 245px;
}
.hero .sub {
  max-width: 850px;
}
.hero .sub > span {
  display: block;
}
.hero-bottom strong {
  font-size: 21px;
  line-height: 1.3;
}
.hero-bottom p {
  max-width: 360px;
  line-height: 1.6;
}
.facts {
  display: block;
}
.facts h3 {
  max-width: none;
  margin-bottom: 30px;
}
.fact-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
#catalog .intro {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
#catalog .intro h2 {
  max-width: 100%;
}
#catalog .intro p {
  max-width: 760px;
}
.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.catalog-more:has(button[hidden]) {
  display: none;
}
@media (min-width: 901px) {
  .hero .sub > span {
    white-space: nowrap;
  }
}
@media (max-width: 1150px) and (min-width: 901px) {
  .header-inner {
    gap: 16px;
  }
  .desktop-nav {
    gap: 13px;
  }
  header .brand span {
    max-width: 205px;
  }
}
@media (max-width: 900px) {
  .hero .sub > span {
    display: inline;
  }
  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  header .brand span {
    font-size: 9px;
    line-height: 1.35;
    max-width: 140px;
    white-space: normal;
  }
  header .brand {
    flex-shrink: 1;
    min-width: 0;
  }
  .header-inner {
    gap: 10px;
  }
  .header-contact {
    flex-shrink: 0;
  }
  .menu-toggle {
    flex-shrink: 0;
  }
  .hero-bottom > div {
    display: block;
  }
  .hero-bottom strong {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .hero-bottom p {
    text-align: left;
    font-size: 12px;
    max-width: none;
  }
  .hero-bottom {
    gap: 22px;
  }
  .fact-grid {
    gap: 28px 20px;
  }
  .fact span {
    font-size: 13px;
  }
}
@media (max-width: 370px) {
  .header-contact .fine {
    display: none;
  }
  .header-contact .phone {
    font-size: 11px;
  }
  .menu-toggle {
    min-width: 36px;
  }
  header .brand span {
    max-width: 125px;
  }
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(38px, 4.15vw, 60px);
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 46px;
  }
}
@media (max-width: 620px) {
  .hero h1 {
    font-size: 36px;
  }
}
/* Protiles / visual direction adapted from Blackwood. Content and behavior unchanged. */
:root {
  --ink: #f4f4f2;
  --muted: #b2b2b8;
  --line: #3a3a3e;
  --paper: #1c1c1e;
  --soft: #222225;
  --dark: #18181a;
  --space: 112px;
  --radius: 7px;
}
html {
  background: #1c1c1e;
  scroll-padding-top: 112px;
}
body {
  background: #1c1c1e;
  color: var(--ink);
  font-family: "Onest", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(ellipse at 0 35%, #46465730, transparent 55%);
}
.wrap {
  width: min(1320px, calc(100% - 80px));
}
.section {
  position: relative;
  padding: var(--space) 0;
}
.soft {
  background: transparent;
}
.dark {
  background: transparent;
}
.dark p,
p {
  color: var(--muted);
}
h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.045em;
}
h1,
h2 {
  text-transform: none;
}
h2 {
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.12;
}
h3 {
  line-height: 1.18;
}
.intro {
  gap: 44px;
  margin-bottom: 48px;
}
.intro p {
  font-size: 16px;
  line-height: 1.65;
}
.fine,
.count,
.number {
  color: #a4a4ab;
}
.number {
  font-size: 12px;
  letter-spacing: 0.06em;
}
.grid3 {
  gap: 16px;
}
.text-link {
  font-weight: 400;
  font-size: 14px;
  padding: 11px 0;
  border-color: #606066;
  color: #e4e4e7;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.text-link:hover {
  color: white;
  border-color: white;
}
.text-link:after {
  font-size: 19px;
}
.btn {
  border: 1px solid #ffffffbd;
  border-radius: 7px;
  background: #f3f3f0;
  color: #27272c;
  min-height: 58px;
  padding: 17px 24px;
  gap: 26px;
  font-weight: 400;
  font-size: 14px;
  box-shadow: inset 0 1px 0 #fff8;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.btn:before {
  content: "";
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-right: -12px;
}
.btn:after {
  font-size: 18px;
  margin-left: auto;
}
.btn:hover {
  background: #fff;
  color: #161618;
  box-shadow: 0 6px 30px #ffffff10;
  transform: translateY(-2px);
}
.btn.light {
  background: #f3f3f0;
  color: #27272c;
  border-color: #fff9;
}
.btn.outline,
.dark .btn.outline {
  color: #f0f0f2;
  background: #ffffff03;
  border-color: #55555d;
  box-shadow: inset 0 1px 0 #ffffff06;
}
.btn.outline:hover,
.dark .btn.outline:hover {
  background: #ffffff0d;
  border-color: #97979d;
  color: white;
}
.skip {
  background: #ededee;
  color: #222;
}
:focus-visible {
  outline: 2px solid #d0d0e7;
  outline-offset: 5px;
}
header {
  height: 100px;
  position: relative;
  background: transparent;
  border: 0;
  z-index: 20;
}
.header-inner {
  gap: 26px;
}
.brand {
  font-size: 34px;
  letter-spacing: -0.065em;
  color: #fff;
}
header .brand span {
  font-size: 10px;
  line-height: 1.4;
  max-width: 228px;
  letter-spacing: 0.015em;
  color: #c8c8cd;
}
.desktop-nav {
  gap: 23px;
  padding: 18px 22px;
  background: #5b5b6530;
  border: 1px solid #ffffff0f;
  border-radius: 9px;
  backdrop-filter: blur(20px);
  margin-left: auto;
  margin-right: 0;
  font-size: 12px;
}
.desktop-nav a {
  white-space: nowrap;
}
.messengers {
  gap: 6px;
}
.messenger {
  border-radius: 7px;
  border-color: #ffffff24;
  background: #ffffff08;
  width: 36px;
  height: 38px;
  color: white;
}
.messenger:hover {
  background: #ffffff16;
}
.header-contact .phone {
  font-size: 15px;
  font-weight: 400;
}
.header-contact .fine {
  font-size: 11px;
  color: #c6c6ca;
  margin-top: 5px;
}
.header-hours {
  display: none;
}
.menu-toggle {
  border-color: #ffffff30;
  background: #ffffff0b;
  color: #fff;
  border-radius: 7px;
}
.mobile-nav.open {
  background: #252528;
  color: white;
  border-color: #45454b;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 15px 40px #0005;
  top: 99px;
}
.hero {
  margin: -88px 12px 0;
  border-radius: 19px;
  background: #323235;
  min-height: 810px;
  overflow: hidden;
}
.hero > .image-placeholder {
  background:
    radial-gradient(ellipse at 83% 12%, #78787d 0, transparent 44%),
    linear-gradient(125deg, #2d2d32 6%, #53535a 65%, #333337);
  justify-content: center;
  align-items: flex-end;
  padding: 0 6% 0 0;
  color: #c7c7ce;
}
.hero > .image-placeholder .placeholder-mark {
  color: #d2d2d9;
  font-size: 40px;
  font-weight: 200;
}
.hero > .image-placeholder .placeholder-label {
  font-size: 11px;
  color: #c7c7ce;
  max-width: 150px;
  letter-spacing: 0.08em;
}
.hero:after {
  background:
    linear-gradient(90deg, #15151890 0, #19191b30 74%, transparent),
    linear-gradient(0deg, #1c1c1e 0, transparent 30%);
}
.hero-content {
  padding: 170px 0 30px;
  width: min(1320px, calc(100% - 56px));
}
.hero h1 {
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 400;
  line-height: 1.04;
  max-width: 1100px;
  letter-spacing: -0.047em;
  margin-bottom: 34px;
}
.hero h1 span {
  color: #d0d0d3;
}
.hero .sub {
  font-size: 17px;
  line-height: 1.6;
  color: #efeff2;
  max-width: 850px;
  margin-top: 0;
}
.hero-actions {
  margin: 30px 0 58px;
}
.hero-actions .btn {
  min-width: 310px;
}
.hero-bottom {
  border: 0;
  gap: 12px;
  padding-top: 0;
  grid-template-columns: repeat(3, 1fr);
}
.hero-bottom > div {
  padding: 26px 25px 25px;
  border: 1px solid #ffffff18;
  background: #232326d9;
  backdrop-filter: blur(18px);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 #ffffff05;
}
.hero-bottom strong {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.hero-bottom p {
  font-size: 13px;
  color: #bdbdc5;
  line-height: 1.6;
  max-width: 350px;
}
#business {
  background: radial-gradient(ellipse at 0 28%, #49495c36, transparent 48%);
}
#business > .wrap {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  column-gap: 54px;
  align-items: start;
}
#business .intro {
  margin: 0;
  position: static;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
#business .intro h2 {
  font-size: clamp(29px, 2.6vw, 40px);
}
#business-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.business-card {
  border: 1px solid #37373d;
  border-radius: 19px;
  padding: 28px;
  min-height: 328px;
  background:
    radial-gradient(ellipse at 100% 100%, #47475235, transparent 72%),
    linear-gradient(145deg, #ffffff02, #ffffff00);
  box-shadow: inset 0 1px 0 #ffffff05;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.business-card:hover {
  border-color: #666670;
  background: radial-gradient(ellipse at 100% 100%, #55556640, transparent 75%);
  transform: translateY(-3px);
}
.card-top {
  flex-direction: row-reverse;
  margin-bottom: 29px;
}
.line-icon {
  width: 31px;
  height: 31px;
  color: #c1c1ca;
  stroke-width: 1;
}
.business-card h3 {
  font-size: 24px;
  text-transform: none;
  letter-spacing: -0.035em;
  margin-bottom: 25px;
  max-width: 320px;
}
.business-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #b1b1b9;
}
.business-card .text-link {
  margin-top: 26px;
}
.facts {
  grid-column: 1/-1;
  margin-top: 90px;
  padding-top: 38px;
  border-color: #424247;
}
.facts h3 {
  font-size: 17px;
  letter-spacing: 0;
  margin-bottom: 38px;
  color: #b8b8c0;
}
.fact-grid {
  gap: 36px;
}
.fact {
  padding-right: 24px;
  border-right: 1px solid #424247;
}
.fact:last-child {
  border-right: 0;
}
.fact strong {
  font-size: clamp(54px, 6.2vw, 88px);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 1;
  margin-bottom: 20px;
}
.fact span {
  font-size: 15px;
  color: #b4b4bc;
}
.clients {
  grid-column: 1/-1;
  gap: 32px;
  border-color: #424247;
  margin-top: 38px;
  padding-top: 28px;
  color: #d0d0d7;
}
.clients .label {
  color: #9797a1;
  font-size: 12px;
}
#catalog {
  padding-top: 34px;
}
#catalog .intro {
  max-width: 1100px;
  gap: 26px;
}
#catalog .intro h2 {
  max-width: 1100px;
}
#catalog .intro p {
  font-size: 16px;
  max-width: 730px;
}
.filters {
  margin-bottom: 28px;
}
.chips {
  gap: 8px;
}
.chip {
  border-color: #44444c;
  color: #c4c4cc;
  background: #ffffff03;
  border-radius: 6px;
  font-size: 14px;
  min-height: 45px;
  padding: 11px 21px;
}
.chip:hover {
  border-color: #82828c;
}
.chip.active {
  background: #e7e7e8;
  color: #26262b;
  border-color: #e7e7e8;
}
.count {
  font-size: 13px;
}
.product {
  border: 1px solid #414148;
  border-radius: 17px;
  background: linear-gradient(155deg, #2a2a2e, #222225);
  padding: 8px;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.product:hover {
  transform: translateY(-4px);
  border-color: #71717b;
}
.product-photo {
  height: 285px;
  border-radius: 11px;
  overflow: hidden;
}
.product-content {
  padding: 24px 17px 17px;
}
.product-title {
  margin-bottom: 23px;
}
.product-title h3 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.spec {
  font-size: 12px;
  border-color: #46464d;
  padding: 11px 0;
}
.spec strong {
  font-weight: 400;
  color: #dedee3;
  text-align: right;
}
.spec span {
  color: #a6a6b0;
}
.product .btn {
  background: #ededee;
  color: #242429;
  border-color: #ffffff90;
  min-height: 50px;
  margin-top: 17px;
}
.product .btn:hover {
  background: white;
}
.tag {
  top: 14px;
  left: 14px;
  background: #22222775;
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff24;
  color: #dedee5;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 11px;
}
.catalog-more {
  margin-top: 36px;
}
.catalog-more .btn {
  min-width: 220px;
}
.catalog-foot {
  padding-top: 26px;
  margin-top: 30px;
  border-top: 1px solid #3d3d44;
}
.catalog-foot .fine {
  max-width: 620px;
}
.image-placeholder,
.product-photo > .image-placeholder,
.product:nth-child(2n) .image-placeholder,
.product:nth-child(3n) .image-placeholder,
.sample-art > .image-placeholder {
  background:
    radial-gradient(ellipse at 80% 12%, #68687150, transparent 75%),
    linear-gradient(135deg, #414148, #33333b);
  color: #b7b7c2;
  position: relative;
}
.image-placeholder:before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid #ffffff0d;
  border-radius: 5px;
  pointer-events: none;
}
.hero > .image-placeholder:before {
  display: none;
}
.placeholder-mark {
  color: #b6b6c3;
  font-size: 28px;
  font-weight: 200;
}
.placeholder-label {
  color: #b0b0bd;
  font-size: 11px;
  letter-spacing: 0.07em;
}
.product:nth-child(3n + 2) .image-placeholder {
  background: linear-gradient(140deg, #53535d, #34343a);
}
.product:nth-child(3n + 3) .image-placeholder {
  background: linear-gradient(140deg, #3a3a42, #50505a);
}
#matrix {
  background: radial-gradient(ellipse at 100% 50%, #49495e30, transparent 60%);
}
.matrix {
  gap: 88px;
}
.matrix h2 {
  margin-bottom: 28px;
}
.matrix p {
  font-size: 16px;
  line-height: 1.7;
}
.checklist {
  margin: 25px 0 34px;
}
.checklist li {
  font-size: 14px;
  padding: 12px 0 12px 26px;
  color: #c6c6ce;
  line-height: 1.6;
}
.checklist li:before {
  content: "—";
  color: #888895;
}
.matrix-visual {
  padding: 32px;
  border: 1px solid #494950;
  border-radius: 21px;
  background:
    radial-gradient(ellipse at 100% 0, #53536436, transparent 75%), #242428;
  color: #f0f0f4;
  box-shadow: 0 28px 80px #0002;
}
.matrix-visual .label-row {
  border-color: #4d4d56;
  font-size: 11px;
  color: #a4a4b1;
  letter-spacing: 0.06em;
}
.matrix-visual h3 {
  font-size: 29px;
  margin: 29px 0;
}
.matrix-item {
  border-color: #484851;
  padding: 18px 0;
  gap: 17px;
}
.matrix-item p {
  font-size: 12px;
  color: #a3a3af;
  line-height: 1.5;
}
.matrix-item > .image-placeholder {
  border-radius: 7px;
}
.matrix-item > .image-placeholder:before {
  display: none;
}
.matrix-total {
  color: #b3b3bd;
  font-size: 13px;
}
.matrix-total strong {
  color: #ededf3;
  font-weight: 400;
}
#economics .intro {
  align-items: start;
}
.calculator {
  border: 1px solid #43434b;
  border-radius: 22px;
  overflow: hidden;
  background: #222225;
  grid-template-columns: 1.12fr 1fr;
}
.calc-inputs {
  padding: 42px;
}
.calc-result {
  padding: 42px;
  background:
    radial-gradient(ellipse at 100% 100%, #56566e45, transparent 85%), #2a2a30;
  border-left: 1px solid #41414b;
}
.field-grid {
  gap: 25px 20px;
}
.field label,
.form-field label {
  font-size: 13px;
  color: #c1c1cc;
  font-weight: 400;
}
input,
select,
textarea {
  background: #ffffff04;
  border: 1px solid #575761;
  color: #f1f1f4;
  border-radius: 7px;
  min-height: 55px;
  padding: 15px;
  font-size: 15px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
input::placeholder,
textarea::placeholder {
  color: #9393a0;
}
input:focus,
textarea:focus,
select:focus {
  outline: 1px solid #b8b8cc;
  border-color: #b8b8cc;
  background: #ffffff09;
}
.unit {
  color: #aaaaba;
  top: 17px;
}
.calc-inputs > .fine {
  color: #9797a5;
  line-height: 1.7;
  font-size: 12px;
  margin-top: 29px;
}
.calc-result .number {
  color: #aaaab8;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.margin-value {
  font-size: 83px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.07em;
  margin-top: 8px;
}
.calc-result h3 {
  font-size: 15px;
  color: #c5c5d0;
  line-height: 1.4;
  margin: 8px 0 25px;
}
.calc-row {
  border-color: #4b4b57;
  padding: 14px 0;
  color: #bdbdca;
  font-size: 13px;
}
.calc-row strong {
  font-weight: 400;
  color: #ededf3;
}
.calc-result .fine {
  color: #aaaab7;
}
.status-message {
  color: #d0d0da;
}
#private {
  padding: 30px 0;
}
.private-label {
  min-height: 600px;
  gap: 0;
  overflow: hidden;
  border: 1px solid #45454c;
  border-radius: 22px;
  background: #242427;
}
.private-photo {
  min-height: 560px;
}
.private-photo > .image-placeholder {
  border-radius: 0;
}
.private-photo .photo-label,
.sample-art .sample-caption {
  background: #252529b8;
  border: 1px solid #ffffff18;
  color: #e4e4ed;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  padding: 14px 19px;
  font-size: 12px;
}
.private-copy {
  padding: 58px 45px;
  background:
    radial-gradient(ellipse at 100% 100%, #4a4a5d3d, transparent 85%), #242427;
}
.private-copy h2 {
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.12;
  margin-bottom: 27px;
}
.private-copy .checklist {
  margin: 20px 0 28px;
}
.private-copy .fine {
  font-size: 12px;
  color: #a7a7b2;
  line-height: 1.6;
}
.sample-grid {
  gap: 85px;
}
.sample-art {
  height: 540px;
  border: 1px solid #484850;
  border-radius: 21px;
}
.sample-copy h2 {
  margin-bottom: 28px;
}
.sample-copy > p {
  font-size: 16px;
  line-height: 1.7;
}
.sample-copy > .fine {
  font-size: 12px;
}
#advantages {
  background: radial-gradient(ellipse at 5% 65%, #47475b3b, transparent 65%);
}
#advantages .intro h2 {
  max-width: 1050px;
}
.benefits {
  gap: 16px;
}
.benefit {
  border: 1px solid #414148;
  border-radius: 18px;
  padding: 30px;
  min-height: 280px;
  background: radial-gradient(ellipse at 100% 100%, #44445135, transparent 80%);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.benefit:hover {
  border-color: #74747f;
  transform: translateY(-3px);
}
.benefit .number {
  display: inline-flex;
  border: 1px solid #555560;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  color: #b5b5c4;
  font-size: 11px;
  letter-spacing: 0;
}
.benefit h3 {
  font-size: 25px;
  max-width: none;
  margin: 24px 0 17px;
  line-height: 1.2;
}
.benefit p {
  font-size: 14px;
  line-height: 1.7;
  max-width: none;
}
#quality {
  padding-top: 60px;
}
.quality-grid {
  gap: 100px;
}
.quality-grid h2 {
  font-size: clamp(32px, 3vw, 45px);
  margin-bottom: 30px;
}
.quality-grid > div > p {
  font-size: 16px;
  line-height: 1.7;
}
.quality-table {
  border-color: #666672;
}
.quality-row {
  border-color: #474751;
  padding: 24px 0;
  font-size: 14px;
  line-height: 1.6;
}
.quality-row strong {
  font-weight: 400;
  color: #eeeef3;
}
.quality-row span {
  color: #aaaab7;
}
.document-card {
  border-color: #44444f;
  border-radius: 18px;
  padding: 32px;
  background: linear-gradient(145deg, #2a2a2f, #232326);
  gap: 24px;
}
.doc-icon {
  border: 1px solid #696976;
  border-radius: 5px;
  color: #b7b7c6;
  width: 44px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 10px;
}
.document-card h3 {
  font-size: 24px;
  line-height: 1.25;
}
.document-card p {
  font-size: 14px;
  line-height: 1.7;
}
.document-card .text-link {
  margin-top: 10px;
}
#repeat {
  padding-top: 30px;
}
.repeat-panel {
  border: 1px solid #484853;
  border-radius: 23px;
  padding: 55px;
  background: radial-gradient(ellipse at 5% 95%, #50506632, transparent 60%);
  gap: 80px;
}
.repeat-panel h2 {
  font-size: clamp(30px, 2.8vw, 42px);
}
.repeat-panel p {
  line-height: 1.7;
  font-size: 16px;
}
.repeat-list li {
  padding-bottom: 25px;
  padding-left: 45px;
}
.repeat-list li:before {
  color: #858598;
  border: 1px solid #51515f;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 10px;
}
.repeat-list strong {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e4e4ed;
}
.repeat-list span {
  font-size: 14px;
  line-height: 1.65;
}
.logistics {
  gap: 80px;
}
.logistics h2 {
  font-size: clamp(31px, 2.9vw, 43px);
}
.logistics > div > p {
  font-size: 16px;
  line-height: 1.7;
}
.geo {
  padding: 40px;
  border: 1px solid #4a4a55;
  border-radius: 21px;
  background:
    radial-gradient(ellipse at 90% 10%, #52526b3b, transparent 75%), #26262b;
}
.geo-title {
  border-color: #53535f;
  padding-bottom: 31px;
  margin-bottom: 31px;
  gap: 20px;
}
.geo-title strong {
  font-size: 47px;
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.geo-title span {
  color: #aaaabc;
}
.geo-regions {
  gap: 28px;
}
.geo-regions div {
  font-size: 22px;
}
.geo-regions span {
  font-size: 12px;
  color: #aaaaba;
  margin-top: 10px;
}
.geo .fine {
  border-color: #494956;
  color: #a3a3b2;
  padding-top: 25px;
  margin-top: 30px;
  line-height: 1.7;
}
#faq {
  background: radial-gradient(ellipse at 100% 20%, #45455a25, transparent 65%);
}
.faq-col,
details {
  border-color: #4b4b55;
}
summary {
  font-size: 16px;
  padding: 25px 42px 25px 0;
  line-height: 1.5;
}
summary:after {
  background: #33333b;
  border: 1px solid #53535f;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  top: 24px;
  font-size: 20px;
  color: #d5d5e2;
}
details[open] summary {
  color: white;
}
details p {
  font-size: 14px;
  color: #b2b2bf;
  line-height: 1.8;
  padding-bottom: 26px;
}
.faq-foot {
  margin-top: 34px;
}
.faq-foot p {
  font-size: 15px;
}
#request {
  margin: 20px 12px;
  border: 1px solid #45454f;
  border-radius: 23px;
  background:
    radial-gradient(ellipse at 0 0, #57576f45, transparent 65%), #232327;
  padding: 74px 0;
}
.final-grid {
  gap: 80px;
  align-items: start;
}
.final-grid h2 {
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}
.final-grid .lead {
  font-size: 16px;
  line-height: 1.7;
  max-width: 440px;
}
.final-steps {
  border-color: #575763;
  margin-top: 40px;
  padding-top: 22px;
}
.final-steps p {
  font-size: 14px;
  color: #b7b7c8;
  padding: 11px 0;
}
.final-steps span {
  color: #77778b;
}
.lead-form {
  padding: 32px;
  border: 1px solid #4c4c59;
  border-radius: 19px;
  background: #2c2c32;
  color: #f4f4f8;
  box-shadow: 0 25px 65px #0002;
}
.lead-form h3 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin-bottom: 29px;
}
.form-grid {
  gap: 20px;
}
.segmented {
  gap: 7px;
}
.segmented label {
  border-color: #585866;
  border-radius: 7px;
  padding: 13px 9px;
  font-size: 12px;
  color: #bcbccd;
  transition: background 0.2s;
}
.segmented label:has(input:checked) {
  background: #e7e7ed;
  color: #27272f;
  border-color: #e7e7ed;
}
.agree {
  color: #afafc0;
  font-size: 11px;
  line-height: 1.7;
  margin: 22px 0;
}
.agree input {
  accent-color: #c4c4d6;
}
.form-note {
  color: #adadbd !important;
  line-height: 1.6;
}
input[type="file"] {
  background: #ffffff04;
  border-style: dashed;
  color: #b8b8c8;
  font-size: 12px;
}
input[type="file"]::file-selector-button {
  background: #494954;
  color: #efeff7;
  border: 0;
  border-radius: 4px;
  padding: 6px 9px;
  margin-right: 8px;
  font: inherit;
}
.lead-form > .btn {
  margin-top: 3px;
}
#contacts {
  padding: 95px 0 90px;
}
.contacts {
  gap: 85px;
}
.contacts h2 {
  font-size: clamp(31px, 3vw, 44px);
}
.contacts .big-phone {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #f2f2f6;
}
.contact-row {
  border-color: #454550;
  padding: 23px 0;
}
.contact-row > a {
  font-size: 18px;
  color: #cdcdde;
}
.address {
  border: 1px solid #494954;
  border-radius: 19px;
  background:
    radial-gradient(ellipse at 100% 100%, #50506640, transparent 80%), #25252a;
  padding: 42px;
}
.address h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 24px;
}
.address p {
  line-height: 1.75;
  color: #b2b2c0;
}
.address .text-link {
  margin-top: 30px;
}
footer {
  border-color: #41414d;
  padding: 42px 0 28px;
}
.footer-top {
  align-items: center;
}
.footer-top .brand {
  font-size: 38px;
}
.footer-top .brand span {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #9e9eb0;
}
.footer-top nav {
  color: #b9b9ca;
  font-size: 13px;
}
.footer-top .fine {
  color: #9292a5;
  font-size: 11px;
}
.footer-bottom {
  border-color: #3e3e4a;
  color: #9191a5;
  font-size: 11px;
  margin-top: 40px;
  padding-top: 24px;
}
dialog {
  color: #f4f4f7;
  background:
    radial-gradient(ellipse at 100% 0, #51516745, transparent 60%), #27272e;
  border: 1px solid #616170;
  border-radius: 20px;
  box-shadow: 0 35px 100px #0008;
}
dialog::backdrop {
  background: #08080cc2;
  backdrop-filter: blur(10px);
}
.dialog-inner {
  padding: 42px;
}
.dialog-inner h2 {
  font-size: 30px;
  margin-top: 15px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.dialog-inner > p {
  font-size: 14px;
  line-height: 1.7;
}
.dialog-close {
  top: 11px;
  right: 12px;
  color: #bdbdcd;
  font-weight: 200;
}
.dialog-close:hover {
  color: white;
}
.draft {
  background: #ffffff05;
  border: 1px solid #50505e;
  border-radius: 9px;
  color: #d0d0df;
  font-size: 13px;
  line-height: 1.7;
}
.dialog-actions {
  gap: 12px;
}
.status-message {
  color: #bdbdd1;
}
.sticky-mobile {
  background: #23232bf2;
  border-color: #555564;
  backdrop-filter: blur(18px);
}
.sticky-mobile .call {
  color: #ededf7;
  border-color: #686876;
  border-radius: 6px;
}
.mobile-nav a {
  padding: 4px 0;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 185px;
    padding-bottom: 32px;
  }
}
@media (max-width: 1200px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 18px;
  }
  .desktop-nav {
    gap: 14px;
    padding: 15px;
    font-size: 11px;
  }
  header .brand span {
    max-width: 185px;
    font-size: 9px;
  }
  .header-contact .phone {
    font-size: 14px;
  }
  .hero-content {
    width: calc(100% - 40px);
  }
  #business > .wrap {
    grid-template-columns: 0.9fr 2.1fr;
    gap: 34px;
  }
  #business .intro h2 {
    font-size: 32px;
  }
  .business-card {
    padding: 25px;
  }
  .business-card h3 {
    font-size: 22px;
  }
  .private-copy {
    padding: 40px 30px;
  }
  .quality-grid,
  .final-grid,
  .matrix,
  .sample-grid,
  .logistics {
    gap: 48px;
  }
  .geo {
    padding: 30px;
  }
  .geo-title strong {
    font-size: 39px;
  }
  .product-photo {
    height: 245px;
  }
  .spec {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 50px;
    max-width: 970px;
  }
}
@media (max-width: 1000px) {
  header .desktop-nav,
  header .messengers {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-contact {
    margin-left: auto;
  }
  .hero h1 {
    font-size: 45px;
    max-width: 850px;
  }
  .hero .sub {
    font-size: 16px;
  }
  .hero > .image-placeholder .placeholder-label,
  .hero > .image-placeholder .placeholder-mark {
    display: none;
  }
  .hero-bottom > div {
    padding: 23px 20px;
  }
  .hero-bottom strong {
    font-size: 17px;
  }
  .hero-bottom p {
    font-size: 12px;
  }
  #business > .wrap {
    display: block;
  }
  #business .intro {
    position: static;
    max-width: 800px;
    margin-bottom: 38px;
  }
  #business .intro h2 {
    font-size: 40px;
  }
  .business-card h3 {
    max-width: none;
  }
  .business-card {
    min-height: 290px;
  }
  .facts {
    margin-top: 64px;
  }
  .grid3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .document-card:last-child {
    grid-column: 1/-1;
  }
  .private-copy h2 {
    font-size: 31px;
  }
  .private-photo {
    min-height: 560px;
  }
  .final-grid {
    grid-template-columns: 1fr;
  }
  .final-grid h2 {
    max-width: 760px;
    font-size: 42px;
  }
  .final-grid .lead {
    max-width: 760px;
  }
  .final-steps {
    display: none;
  }
  .lead-form {
    max-width: 760px;
    width: 100%;
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .quality-grid h2 {
    max-width: 800px;
  }
  .quality-grid > div > p {
    max-width: 700px;
  }
  .calc-inputs,
  .calc-result {
    padding: 30px;
  }
  .repeat-panel {
    padding: 36px;
    gap: 40px;
  }
  .geo-title {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }
  .geo-title span {
    max-width: none;
  }
  .contacts .big-phone {
    font-size: 30px;
  }
  .contact-row {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 760px) {
  :root {
    --space: 76px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  header {
    height: 92px;
  }
  .header-inner {
    gap: 16px;
  }
  .brand {
    font-size: 29px;
  }
  header .brand span {
    font-size: 9px;
    max-width: 200px;
  }
  .mobile-nav.open {
    top: 91px;
  }
  .hero {
    margin: -82px 8px 0;
    min-height: 0;
    border-radius: 15px;
  }
  .hero-content {
    padding: 139px 0 20px;
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 41px;
    line-height: 1.08;
    max-width: 660px;
    letter-spacing: -0.045em;
  }
  .hero h1 br {
    display: initial;
  }
  .hero h1 span {
    display: block;
    margin-top: 8px;
  }
  .hero .sub > span {
    display: inline;
  }
  .hero .sub {
    font-size: 16px;
    max-width: 620px;
    line-height: 1.65;
  }
  .hero-actions {
    margin: 26px 0 40px;
  }
  .hero-bottom {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .hero-bottom > div {
    display: block;
    padding: 22px 24px;
  }
  .hero-bottom strong {
    font-size: 19px;
  }
  .hero-bottom p {
    max-width: none;
    font-size: 13px;
    text-align: left;
  }
  .hero > .image-placeholder {
    background:
      radial-gradient(ellipse at 100% 0, #85858f55, transparent 60%),
      linear-gradient(145deg, #3c3c44, #232329);
  }
  #business .intro h2,
  h2 {
    font-size: 34px;
  }
  .intro {
    margin-bottom: 32px;
    gap: 23px;
  }
  .facts h3 {
    font-size: 16px;
  }
  .fact-grid {
    gap: 32px 20px;
  }
  .fact:nth-child(2) {
    border-right: 0;
  }
  .fact strong {
    font-size: 66px;
  }
  .fact span {
    font-size: 13px;
  }
  .clients {
    font-size: 13px;
    gap: 19px;
  }
  .catalog-foot {
    align-items: start;
    flex-direction: column;
  }
  .matrix,
  .sample-grid,
  .logistics,
  .contacts,
  .repeat-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .matrix-visual {
    padding: 27px;
  }
  .matrix h2,
  .sample-copy h2,
  .logistics h2,
  .contacts h2,
  .quality-grid h2,
  .repeat-panel h2 {
    font-size: 34px;
  }
  .calculator {
    grid-template-columns: 1fr;
  }
  .field-grid {
    grid-template-columns: 1fr 1fr;
  }
  .calc-result {
    border-left: 0;
    border-top: 1px solid #464652;
  }
  .private-label {
    grid-template-columns: 1fr;
  }
  .private-copy {
    padding: 38px 28px;
  }
  .private-copy h2 {
    font-size: 34px;
  }
  .private-photo {
    min-height: 350px;
    order: 2;
  }
  .sample-art {
    height: 360px;
  }
  .sample-copy {
    order: -1;
  }
  .benefit {
    min-height: 270px;
    padding: 25px;
  }
  .benefit h3 {
    font-size: 22px;
  }
  .repeat-panel {
    padding: 30px;
  }
  .geo-title {
    flex-direction: row;
    align-items: center;
  }
  .geo-title strong {
    font-size: 44px;
  }
  .geo-title span {
    max-width: 140px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-col + .faq-col {
    border-top: 0;
  }
  #request {
    margin: 12px 8px;
    padding: 45px 0;
    border-radius: 18px;
  }
  .final-grid {
    gap: 30px;
  }
  .final-grid h2 {
    font-size: 36px;
  }
  .lead-form {
    padding: 26px;
  }
  .address {
    padding: 30px;
  }
  .contacts .big-phone {
    font-size: 35px;
  }
  .contact-row {
    flex-direction: row;
    align-items: center;
  }
  .footer-top {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
  footer {
    padding-bottom: 100px;
  }
  .sticky-mobile {
    display: flex;
  }
  .sticky-mobile .btn {
    min-height: 45px;
    padding: 11px 17px;
    font-size: 12px;
  }
  .sticky-mobile .btn:before {
    display: none;
  }
}
@media (max-width: 620px) {
  :root {
    --space: 64px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  header {
    height: 90px;
  }
  .header-inner {
    gap: 10px;
  }
  .brand {
    font-size: 28px;
  }
  header .brand span {
    max-width: 142px;
    font-size: 8px;
    line-height: 1.4;
  }
  .header-contact .phone {
    font-size: 12px;
  }
  .header-contact .fine {
    font-size: 9px;
  }
  .menu-toggle {
    min-width: 36px;
    min-height: 40px;
    font-size: 20px;
  }
  .mobile-nav.open {
    top: 89px;
    padding: 23px;
  }
  .hero {
    margin-top: -80px;
  }
  .hero-content {
    padding-top: 125px;
  }
  .hero h1 {
    font-size: 35px;
    line-height: 1.07;
    letter-spacing: -0.04em;
    margin-bottom: 26px;
  }
  .hero .sub {
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    font-size: 13px;
    min-height: 56px;
  }
  .hero-bottom > div {
    padding: 21px;
  }
  .hero-bottom strong {
    font-size: 18px;
  }
  .hero-bottom p {
    font-size: 13px;
    line-height: 1.6;
  }
  .hero-actions {
    margin-bottom: 28px;
  }
  #business-cards,
  .grid3 {
    grid-template-columns: 1fr;
  }
  #business .intro h2,
  h2,
  .matrix h2,
  .sample-copy h2,
  .logistics h2,
  .contacts h2,
  .quality-grid h2,
  .repeat-panel h2,
  .private-copy h2 {
    font-size: 31px;
    letter-spacing: -0.04em;
    line-height: 1.15;
  }
  .business-card {
    min-height: 285px;
    padding: 26px;
    border-radius: 17px;
  }
  .business-card h3 {
    font-size: 25px;
    max-width: 320px;
  }
  .business-card p {
    font-size: 15px;
  }
  .card-top {
    margin-bottom: 25px;
  }
  .business-card .text-link {
    font-size: 14px;
  }
  .facts {
    margin-top: 48px;
  }
  .fact strong {
    font-size: 59px;
  }
  .fact span {
    font-size: 12px;
  }
  .fact {
    padding-right: 10px;
  }
  .clients .label {
    width: 100%;
    max-width: none;
  }
  .filters {
    gap: 15px;
  }
  .chip {
    font-size: 12px;
    padding: 10px 14px;
    min-height: 42px;
  }
  .count {
    font-size: 12px;
  }
  .product-photo {
    height: 270px;
  }
  .product-content {
    padding: 23px 15px 17px;
  }
  .product-title h3 {
    font-size: 28px;
  }
  .spec {
    font-size: 12px;
  }
  .catalog-more .btn {
    width: 100%;
  }
  .catalog-foot {
    gap: 22px;
  }
  .catalog-foot .btn {
    width: 100%;
  }
  .matrix-visual h3 {
    font-size: 25px;
  }
  .matrix-visual .label-row {
    font-size: 9px;
    gap: 12px;
  }
  .matrix-item {
    gap: 12px;
    font-size: 13px;
  }
  .matrix-item p {
    font-size: 11px;
  }
  .matrix-total {
    font-size: 12px;
  }
  .calc-inputs,
  .calc-result {
    padding: 27px 22px;
  }
  .field-grid {
    gap: 21px 12px;
  }
  .field label {
    font-size: 12px;
  }
  .input-wrap input {
    padding-right: 50px;
    font-size: 14px;
  }
  .unit {
    font-size: 12px;
    right: 11px;
  }
  .margin-value {
    font-size: 76px;
  }
  .calc-result h3 {
    font-size: 14px;
  }
  .calc-row {
    font-size: 12px;
    gap: 12px;
  }
  .calc-result .btn {
    font-size: 12px;
    gap: 17px;
  }
  .private-photo {
    min-height: 310px;
  }
  .private-copy {
    padding: 32px 24px;
  }
  .private-copy .btn {
    font-size: 12px;
    gap: 15px;
  }
  .private-copy .fine {
    font-size: 11px;
  }
  .sample-art {
    height: 330px;
  }
  .sample-copy .btn {
    font-size: 12px;
    gap: 15px;
  }
  .benefit {
    min-height: 0;
    padding: 28px;
  }
  .benefit h3 {
    font-size: 25px;
  }
  .benefit p {
    font-size: 15px;
  }
  .quality-row {
    grid-template-columns: 1fr 1.4fr;
    gap: 15px;
    padding: 22px 0;
    font-size: 13px;
  }
  .document-card {
    padding: 28px;
  }
  .document-card:last-child {
    grid-column: auto;
  }
  .repeat-panel {
    padding: 28px 23px;
  }
  .repeat-list li {
    padding-left: 38px;
  }
  .repeat-list strong {
    font-size: 17px;
  }
  .repeat-list span {
    font-size: 13px;
  }
  .geo {
    padding: 27px;
  }
  .geo-title {
    flex-direction: column;
    align-items: start;
    gap: 13px;
  }
  .geo-title strong {
    font-size: 43px;
  }
  .geo-title span {
    max-width: none;
    font-size: 12px;
  }
  .geo-regions div {
    font-size: 21px;
  }
  .geo-regions span {
    font-size: 11px;
  }
  summary {
    font-size: 15px;
    padding: 23px 39px 23px 0;
  }
  summary:after {
    top: 23px;
    width: 25px;
    height: 25px;
    font-size: 18px;
  }
  .faq-foot {
    gap: 22px;
  }
  .final-grid h2 {
    font-size: 31px;
  }
  .lead-form {
    padding: 25px 20px;
    border-radius: 15px;
  }
  .lead-form h3 {
    font-size: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .segmented label {
    font-size: 11px;
  }
  .agree {
    font-size: 11px;
  }
  .contacts .big-phone {
    font-size: 31px;
  }
  .contact-row {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }
  .address h3 {
    font-size: 30px;
  }
  .dialog-inner {
    padding: 31px 23px;
  }
  .dialog-inner h2 {
    font-size: 27px;
  }
  .dialog-actions {
    flex-direction: column;
  }
  .dialog-actions .btn {
    width: 100%;
  }
}
@media (max-width: 370px) {
  header .brand span {
    max-width: 120px;
    font-size: 7px;
  }
  .header-contact .phone {
    font-size: 11px;
  }
  .header-contact .fine {
    display: none;
  }
  .hero h1 {
    font-size: 30px;
  }
  .brand {
    font-size: 25px;
  }
  .header-inner {
    gap: 8px;
  }
  .hero-content {
    width: calc(100% - 28px);
  }
  .wrap {
    width: calc(100% - 28px);
  }
  .hero-actions .btn {
    font-size: 12px;
    padding: 15px 17px;
  }
  .btn:before {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
@media print {
  body {
    background: white;
    color: black;
  }
  .section {
    break-inside: auto;
  }
  .hero {
    margin: 0;
  }
  .hero h1 {
    font-size: 38px;
  }
  .btn,
  .text-link {
    box-shadow: none;
  }
  .wrap {
    width: 95%;
  }
}

.matrix > *,
.sample-grid > *,
.logistics > *,
.private-label > *,
.contacts > *,
.final-grid > *,
.repeat-panel > *,
.calculator > *,
.field-grid > *,
.form-grid > * {
  min-width: 0;
}
.btn {
  max-width: 100%;
  white-space: normal;
}
@media (max-width: 620px) {
  .private-copy .btn,
  .logistics .btn {
    width: 100%;
  }
  h2 {
    overflow-wrap: normal;
    hyphens: none;
  }
}
@media (max-width: 370px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
  .private-copy h2,
  .logistics h2 {
    font-size: 27px;
  }
  .geo-regions {
    gap: 22px 14px;
  }
  .geo-regions div {
    font-size: 18px;
  }
  .private-copy .btn,
  .logistics .btn {
    font-size: 12px;
    padding: 15px;
    gap: 12px;
  }
  .private-copy {
    padding: 30px 20px;
  }
}

/* Original photography from protiles.ru; keep the sample close-up placeholder. */
img {
  filter: none;
}
.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-position: center 54%;
}
.hero:after {
  background:
    linear-gradient(90deg, #0c0e11d4 0, #1113188a 48%, #13141928),
    linear-gradient(0deg, #1c1c1e 0, transparent 45%);
}
.hero h1 {
  color: #fff;
}
.hero h1 span {
  color: #dedee2;
}
.hero .sub {
  color: #f1f1f3;
}
.matrix-item img {
  border-radius: 7px;
  object-fit: cover;
}
.private-photo img {
  position: absolute;
  inset: 0;
  object-position: center;
}
.product-photo img {
  object-position: center;
  transition: transform 0.7s;
}
.product:hover img {
  transform: scale(1.035);
}
@media (max-width: 760px) {
  .hero > img {
    object-position: 58% center;
  }
  .hero:after {
    background:
      linear-gradient(90deg, #111317d9, #11131794),
      linear-gradient(0deg, #1c1c1e, transparent 70%);
  }
}
/* Alternating light sections preserve the Blackwood-inspired typography and geometry. */
#catalog,
#economics,
#quality,
#faq {
  --ink: #25252a;
  --muted: #65656e;
  --line: #d2d2d8;
  color: #25252a;
  background: #f1f1ef;
  border: 1px solid #ffffff60;
  border-radius: 22px;
  margin: 16px 12px;
  padding: 86px 0;
  overflow: hidden;
}
:is(#catalog, #economics, #quality, #faq) h2 {
  color: #25252a;
}
:is(#catalog, #economics, #quality, #faq) p {
  color: #65656e;
}
:is(#catalog, #economics, #quality, #faq) .fine,
:is(#catalog, #economics, #quality, #faq) .count,
:is(#catalog, #economics, #quality, #faq) .number {
  color: #74747e;
}
:is(#catalog, #economics, #quality, #faq) .btn {
  color: #f7f7fa;
  background: #29292e;
  border-color: #29292e;
  box-shadow: inset 0 1px 0 #ffffff0c;
}
:is(#catalog, #economics, #quality, #faq) .btn:hover {
  color: white;
  background: #43434d;
  border-color: #43434d;
  box-shadow: 0 6px 24px #00000012;
}
:is(#catalog, #economics, #quality, #faq) .btn.outline {
  color: #2f2f35;
  background: transparent;
  border-color: #b1b1ba;
  box-shadow: none;
}
:is(#catalog, #economics, #quality, #faq) .btn.outline:hover {
  background: #e0e0e5;
  border-color: #8c8c98;
}
#catalog .intro p {
  color: #65656e;
}
#catalog .chip {
  color: #5c5c67;
  background: #ffffff45;
  border-color: #ceced6;
}
#catalog .chip:hover {
  border-color: #92929e;
}
#catalog .chip.active {
  background: #29292e;
  color: white;
  border-color: #29292e;
}
#catalog .product {
  background: #fff;
  border-color: #d4d4dc;
  box-shadow: 0 3px 15px #27273204;
}
#catalog .product:hover {
  border-color: #9898a7;
  box-shadow: 0 12px 35px #2727320c;
}
#catalog .product-title h3 {
  color: #25252c;
}
#catalog .spec {
  border-color: #e2e2e8;
}
#catalog .spec span {
  color: #797985;
}
#catalog .spec strong {
  color: #33333c;
}
#catalog .product .btn {
  background: #29292e;
  color: white;
  border-color: #29292e;
}
#catalog .product .btn:hover {
  background: #44444e;
}
#catalog .catalog-foot {
  border-color: #d1d1da;
}
#economics .calculator {
  background: white;
  border-color: #d1d1db;
  box-shadow: 0 15px 50px #33334407;
}
#economics .calc-inputs {
  background: #fff;
}
#economics .calc-result {
  background:
    radial-gradient(ellipse at 100% 100%, #d1d1e066, transparent 90%), #e6e6ea;
  border-color: #d3d3dd;
}
#economics .field label {
  color: #555562;
}
#economics input {
  background: #f6f6f8;
  color: #292932;
  border-color: #ceced9;
}
#economics input:focus {
  background: white;
  border-color: #79798d;
  outline-color: #79798d;
}
#economics .unit {
  color: #747482;
}
#economics .margin-value {
  color: #25252f;
}
#economics .calc-result h3 {
  color: #616170;
}
#economics .calc-row {
  border-color: #ccccd7;
  color: #686877;
}
#economics .calc-row strong {
  color: #292933;
}
#economics .calc-inputs > .fine,
#economics .calc-result .fine,
#economics .calc-result .number {
  color: #747481;
}
#economics .status-message {
  color: #66516b;
}
#quality .quality-table {
  border-color: #a8a8b4;
}
#quality .quality-row {
  border-color: #d1d1dc;
}
#quality .quality-row strong {
  color: #31313b;
}
#quality .quality-row span {
  color: #686877;
}
#faq .faq-col,
#faq details {
  border-color: #c9c9d4;
}
#faq summary {
  color: #33333e;
}
#faq details[open] summary {
  color: #15151c;
}
#faq summary:after {
  color: #626271;
  background: #e1e1e7;
  border-color: #ccccd7;
}
#faq details p {
  color: #6b6b79;
}
#faq .faq-foot p {
  color: #6b6b79;
}
@media (max-width: 760px) {
  #catalog,
  #economics,
  #quality,
  #faq {
    margin: 12px 8px;
    border-radius: 18px;
    padding: 62px 0;
  }
}
@media (max-width: 620px) {
  #catalog,
  #economics,
  #quality,
  #faq {
    padding: 48px 0;
    border-radius: 16px;
  }
  #catalog .wrap,
  #economics .wrap,
  #quality .wrap,
  #faq .wrap {
    width: calc(100% - 32px);
  }
}

/* Brand assets and revised headings */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  line-height: 1;
}
.brand .brand-logo {
  display: block;
  width: 143px;
  height: auto;
  flex-shrink: 0;
  color: #f1f1ef;
}
header .brand span,
.footer-top .brand span {
  display: block;
  margin: 0;
  max-width: 155px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: normal;
  text-transform: none;
  color: #b8b8c0;
}
.messenger svg {
  fill: none;
  stroke: none;
  width: 22px;
  height: 22px;
}
.benefit .benefit-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  stroke-width: 1.4;
}
#documents .intro h2 {
  max-width: 100%;
  font-size: clamp(32px, 3.1vw, 46px);
}
@media (min-width: 901px) {
  #documents .intro h2 span {
    white-space: nowrap;
  }
}
@media (max-width: 1200px) and (min-width: 901px) {
  header .brand {
    gap: 10px;
  }
  header .brand .brand-logo {
    width: 110px;
  }
  header .brand span {
    max-width: 122px;
    font-size: 9px;
  }
  .header-inner {
    gap: 12px;
  }
  .desktop-nav {
    gap: 10px;
    padding: 12px;
  }
  .header-inner > .messengers {
    display: none;
  }
}
@media (max-width: 620px) {
  header .brand {
    gap: 8px;
    flex-shrink: 1;
  }
  header .brand .brand-logo {
    width: 90px;
  }
  header .brand span {
    max-width: 95px;
    font-size: 8px;
  }
  .header-inner {
    gap: 8px;
  }
  .header-contact .phone {
    font-size: 11px;
  }
  .header-contact .fine {
    font-size: 8px;
  }
  .menu-toggle {
    min-width: 30px;
    width: 30px;
  }
  .footer-top .brand {
    gap: 16px;
  }
  .footer-top .brand .brand-logo {
    width: 135px;
  }
}
@media (max-width: 370px) {
  header .brand .brand-logo {
    width: 72px;
  }
  header .brand span {
    max-width: 76px;
    font-size: 7px;
  }
  .header-contact .phone {
    font-size: 10px;
  }
  .header-inner {
    gap: 5px;
  }
}

#economics .intro {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
#economics .intro p {
  max-width: 800px;
}

#matrix .checklist li {
  padding-left: 38px;
}
#matrix .checklist li:before {
  content: none;
}
.matrix-list-icon {
  position: absolute;
  left: 0;
  top: 13px;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #dedee3;
}
.catalog-foot {
  justify-content: flex-end;
}
.manager-photo {
  margin-top: 30px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/2;
  border: 1px solid #55555c;
}
.manager-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Persistent navigation and quality-control visual */
header {
  position: sticky;
  top: 0;
  background: rgba(28, 28, 30, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #ffffff12;
  z-index: 30;
}
html {
  scroll-padding-top: 120px;
}
.manager-photo {
  position: relative;
}
.manager-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 14px 18px;
  background: #202024dd;
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff20;
  border-radius: 10px;
  color: #f4f4f2;
}
.manager-caption strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
}
.manager-caption span {
  display: block;
  font-size: 12px;
  color: #d0d0d3;
  margin-top: 3px;
}
#quality .quality-grid {
  grid-template-columns: 1fr 1fr;
  gap: 42px 56px;
  align-items: start;
}
.quality-intro {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
#quality .quality-intro h2 {
  margin: 0;
}
.quality-intro p {
  max-width: 560px;
}
.quality-photo {
  height: 100%;
  min-height: 430px;
  border-radius: 18px;
  overflow: hidden;
}
.quality-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quality-table {
  align-self: stretch;
}
@media (min-width: 981px) {
  #request h2 {
    font-size: clamp(28px, 2.55vw, 37px);
  }
  #request h2 span {
    white-space: nowrap;
  }
}
@media (max-width: 980px) {
  #quality .quality-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quality-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .quality-photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 3/2;
  }
  .quality-intro p {
    max-width: 100%;
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 106px;
  }
  .manager-caption {
    left: 12px;
    bottom: 12px;
    right: 12px;
    padding: 10px 12px;
    max-width: calc(100% - 24px);
  }
  .manager-caption strong {
    font-size: 15px;
  }
  .manager-caption span {
    font-size: 11px;
  }
}
@media print {
  header {
    display: none;
  }
}

header:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

/* Section subtitles and constrained sticky heading */
.hero-bottom > div {
  background: #5b5b6530;
  border-color: #ffffff0f;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.intro > p,
.sample-copy > h2 + p,
.quality-intro > p,
.logistics > div > h2 + p {
  font-size: 18px;
}
.private-copy > h2 + p {
  font-size: 17px;
}
.hero .sub {
  font-size: 19px;
}
@media (min-width: 981px) {
  #business .intro {
    display: block;
    align-self: stretch;
    position: relative;
  }
  #business .intro h2 {
    position: sticky;
    top: 124px;
  }
  #economics .intro h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(28px, 3.1vw, 46px);
  }
}
@media (max-width: 980px) {
  #business .intro h2 {
    position: static;
  }
  .hero .sub {
    font-size: 18px;
  }
}
@media (max-width: 620px) {
  .hero .sub {
    font-size: 17px;
  }
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/onest-300.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/onest-400.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/onest-500.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/onest-600.woff2") format("woff2");
}
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/onest-700.woff2") format("woff2");
}

#logistics .logistics > div > p + .btn {
  margin-top: 28px;
}

/* Samples: editorial heading, panoramic image and horizontal steps */
.samples-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}
.samples-heading h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  max-width: 780px;
}
.samples-heading p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}
#samples .sample-art {
  width: 100%;
  height: 470px;
  border-radius: 20px;
}
#samples .sample-art img {
  object-position: center 55% !important;
}
#samples .sample-caption {
  max-width: 300px;
  left: 24px;
  bottom: 24px;
}
.samples-bottom {
  margin-top: 30px;
}
.sample-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.sample-steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-top: 1px solid #49494f;
  padding-top: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #c6c6ce;
}
.sample-step-index {
  font-size: 13px;
  color: #888895;
  line-height: 1.85;
}
.samples-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
@media (max-width: 980px) {
  .samples-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .samples-heading p {
    max-width: 760px;
  }
  #samples .sample-art {
    height: 400px;
  }
  .sample-steps {
    gap: 22px;
  }
}
@media (max-width: 620px) {
  .samples-heading {
    margin-bottom: 26px;
  }
  .samples-heading h2 {
    font-size: 31px;
    line-height: 1.15;
  }
  .samples-heading p {
    font-size: 18px;
  }
  #samples .sample-art {
    height: 300px;
    border-radius: 16px;
  }
  #samples .sample-caption {
    left: 16px;
    bottom: 16px;
    max-width: 230px;
    font-size: 11px;
    padding: 12px 15px;
  }
  .sample-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sample-steps li {
    padding-top: 18px;
  }
  .samples-action {
    margin-top: 28px;
  }
  .samples-action .btn {
    width: 100%;
    font-size: 12px;
  }
}

#samples .sample-caption {
  max-width: none;
  white-space: nowrap;
  width: max-content;
}
@media (max-width: 620px) {
  #samples .sample-caption {
    left: 10px;
    bottom: 14px;
    padding: 10px 8px;
    font-size: clamp(8px, 2.35vw, 11px);
    max-width: calc(100% - 20px);
  }
}

#samples .samples-heading {
  display: block;
}
#samples .samples-heading h2 {
  max-width: none;
  width: 100%;
}

.hero-bottom > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
}
.hero-benefit-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: #ededf0;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-bottom > div > p {
  font-size: 16px;
  line-height: 1.55;
  color: #efeff2;
  max-width: none;
  text-align: left;
}
@media (max-width: 620px) {
  .hero-bottom > div {
    padding: 20px;
    gap: 16px;
  }
  .hero-bottom > div > p {
    font-size: 15px;
  }
}

/* Keep whole words and bind short Russian function words. */
body {
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}
h1,
h2,
h3,
p,
li,
span,
a,
button,
label,
summary {
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}
@media (max-width: 620px) {
  h1 {
    font-size: clamp(26px, 7vw, 39px) !important;
  }
  h2,
  #business .intro h2,
  .samples-heading h2,
  #samples .samples-heading h2,
  .quality-grid h2,
  #request h2 {
    font-size: clamp(25px, 6.8vw, 31px) !important;
  }
  .business-card h3,
  .benefit h3 {
    font-size: 24px;
  }
}
@media (max-width: 370px) {
  .private-copy {
    padding-left: 20px;
    padding-right: 20px;
  }
  .private-copy h2 {
    font-size: 24px !important;
  }
  .hero-bottom > div > p {
    font-size: 14px;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .private-label {
    grid-template-columns: 1fr;
  }
  .private-photo {
    height: 400px;
  }
  .private-copy {
    padding: 40px;
  }
}

/* Light private-label section */
#private .private-label {
  background: #f1f1ef;
  border-color: #dededb;
  color: #202024;
}
#private .private-copy {
  background: #f1f1ef;
  color: #202024;
}
#private .private-copy h2 {
  color: #202024;
}
#private .private-copy p,
#private .private-copy .checklist li {
  color: #65656e;
}
#private .private-copy .checklist li:before {
  color: #85858d;
}
#private .private-copy .btn {
  background: #242427;
  color: #f5f5f2;
  border-color: #242427;
  box-shadow: none;
}
#private .private-copy .btn:hover {
  background: #3a3a40;
  border-color: #3a3a40;
}

.nav-estimate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
}
.nav-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #67d991;
  box-shadow: 0 0 0 3px #67d99118;
  animation: nav-status-pulse 1.8s ease-in-out infinite;
}
@keyframes nav-status-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 3px #67d99118;
  }
  50% {
    opacity: 0.35;
    box-shadow: 0 0 0 5px #67d99108;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-status-dot {
    animation: none;
  }
}

/* Consistent icon column and viewport-aware mobile action bar. */
.hero-bottom > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  justify-content: normal;
  align-items: center;
  gap: 18px;
}
.hero-bottom > div > p {
  width: 100%;
  margin: 0;
  text-align: left;
}
@media (max-width: 980px) {
  .sticky-mobile {
    position: fixed;
    top: var(--mobile-bar-top, auto);
    bottom: var(--mobile-bar-bottom, 0px);
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    z-index: 25;
    align-items: center;
    padding: 9px 18px calc(9px + min(env(safe-area-inset-bottom, 0px), 34px));
    transform: translateZ(0);
  }
  .sticky-mobile .btn {
    min-width: 0;
  }
  .sticky-mobile .call {
    flex: 0 0 47px;
    align-self: stretch;
  }
  .sticky-mobile.is-keyboard-open {
    visibility: hidden;
    pointer-events: none;
  }
}
@media (max-width: 620px) {
  .hero-bottom > div {
    gap: 16px;
  }
}

.sticky-mobile .call svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Warm orange accent, graphite and warm white. */
:root {
  --accent: #f1511a;
  --accent-hover: #d94310;
  --accent-ink: #bd3c10;
}
h1,
h2,
h3 {
  text-transform: none;
}
:is(
    .hero,
    .matrix,
    .calc-result,
    .private-copy,
    .lead-form,
    .modal-form,
    .dialog-actions,
    .sticky-mobile,
    .logistics
  )
  .btn:not(.outline) {
  background: var(--accent);
  border-color: var(--accent);
  color: #241b16;
  box-shadow: inset 0 1px 0 #ffffff25;
}
#private .private-copy .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #241b16;
}
:is(
    .hero,
    .matrix,
    .calc-result,
    .private-copy,
    .lead-form,
    .modal-form,
    .dialog-actions,
    .sticky-mobile,
    .logistics
  )
  .btn:not(.outline):hover,
#private .private-copy .btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #241b16;
}
.hero-benefit-icon,
.benefit-icon,
.matrix-list-icon,
.business-card .line-icon {
  color: var(--accent);
  stroke: var(--accent);
}
#samples .btn.outline {
  border-color: #ef925599;
  color: #f3a46f;
  background: #ef925508;
}
#samples .btn.outline:hover {
  background: #ef925518;
  border-color: var(--accent);
}
#catalog .chip.active {
  background: #29292e;
  border-color: #29292e;
  box-shadow: inset 0 -3px 0 var(--accent);
}
#economics .margin-value {
  color: var(--accent-ink);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline-color: var(--accent);
}
#samples .sample-art img {
  object-position: center 60% !important;
}

@media (max-width: 980px) {
  .sticky-mobile .btn {
    flex: 1;
  }
  .sticky-mobile .call {
    display: grid;
    place-items: center;
    border: 1px solid #686876;
    border-radius: 6px;
    min-height: 45px;
    color: #ededf7;
  }
}

/* One consistent style for every call-to-action button. */
body .btn,
body .btn.light,
body .btn.outline,
body .dark .btn.outline,
#private .private-copy .btn,
#samples .btn.outline,
#catalog .btn,
#economics .btn {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #241b16;
  box-shadow: inset 0 1px 0 #ffffff25;
  border-radius: 7px;
  font-weight: 400;
}
body .btn:hover,
body .btn.light:hover,
body .btn.outline:hover,
body .dark .btn.outline:hover,
#private .private-copy .btn:hover,
#samples .btn.outline:hover,
#catalog .btn:hover,
#economics .btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #241b16;
  box-shadow: 0 6px 24px #ef92551a;
}
body .btn:active {
  background: #e48649;
  border-color: #e48649;
  transform: translateY(0);
}

.business-card .btn {
  margin-top: 24px;
  min-height: 50px;
  padding: 13px 16px;
  font-size: 13px;
  gap: 14px;
  max-width: 100%;
}
.business-card .btn:before {
  display: none;
}

/* Requested orange with white CTA labels. */
body .btn,
body .btn.light,
body .btn.outline,
body .dark .btn.outline,
#private .private-copy .btn,
#samples .btn.outline,
#catalog .btn,
#economics .btn,
body .btn:hover,
body .btn.light:hover,
body .btn.outline:hover,
body .dark .btn.outline:hover,
#private .private-copy .btn:hover,
#samples .btn.outline:hover,
#catalog .btn:hover,
#economics .btn:hover {
  color: #fff;
}
body .btn:active {
  background: #c73c0d;
  border-color: #c73c0d;
  color: #fff;
}

/* Shared CTA palette overrides legacy section themes. */
.btn {
  background: #f1511a !important;
  border-color: #f1511a !important;
  color: #fff !important;
  box-shadow: none !important;
}
.btn:hover {
  background: #d94310 !important;
  border-color: #d94310 !important;
  color: #fff !important;
}
.btn:active {
  background: #c73c0d !important;
  border-color: #c73c0d !important;
}

/* Preserve outlined secondary actions. */
.btn.outline {
  background: transparent !important;
  border-color: #f1511a !important;
  color: #f1511a !important;
  box-shadow: none !important;
}
.btn.outline:hover {
  background: #f1511a !important;
  border-color: #f1511a !important;
  color: #fff !important;
}
.btn.outline:active {
  background: #d94310 !important;
  border-color: #d94310 !important;
  color: #fff !important;
}

.header-contact > .phone {
  display: block;
  line-height: 1.5;
}
.contact-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
