/* ============================================================
   FASAD DECOR — фасадные работы, Минск
   Язык: техническая карта. Холодный графит, монофонт на цифрах,
   волосяные линейки, нумерованные разделы. Мобильная версия базовая.

   ФИРМЕННЫЙ ЦВЕТ — одна переменная --accent. Придёт логотип —
   меняется здесь, весь сайт перекрашивается.
   ============================================================ */

:root {
  --paper:    #eef0f2;
  --card:     #ffffff;
  --ink:      #0f1418;
  --ink-2:    #1a2126;
  --ink-soft: #5d666e;
  --ink-dim:  #8b949c;
  --line:     #d5dade;
  --line-2:   #e6eaed;

  /* фирменный цвет снят с логотипа клиента (малиновый квадрат с F) */
  --accent:      #b4004f;
  --accent-dk:   #8d003e;
  --accent-tint: #fdedf3;
  --accent-lt:   #ff7fae;   /* на тёмном фоне */

  /* цвета материалов — это образцы товара, а не бренд */
  --m-plaster: #d8d2c8;
  --m-clinker: #a8543c;
  --m-decor:   #f0ece5;

  --wrap: 1240px;
  --pad:  clamp(18px, 5vw, 44px);
  --r:    4px;

  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;      /* чтобы якоря не уезжали под шапку */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.62 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.skip {
  position: absolute; left: -9999px; z-index: 300;
  background: var(--ink); color: #fff; padding: 12px 18px;
}
.skip:focus { left: 8px; top: 8px; }

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* ─────────────── типографика ─────────────── */

h1, h2, h3, h4 { margin: 0; line-height: 1.06; font-weight: 700; letter-spacing: -.025em; }
h1 { font-size: clamp(32px, 8.4vw, 68px); }
h2 { font-size: clamp(25px, 5.8vw, 42px); }
h3 { font-size: clamp(18px, 4.2vw, 23px); letter-spacing: -.015em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lead-txt { font-size: clamp(16px, 4vw, 19px); color: var(--ink-soft); max-width: 42em; }

/* метка раздела: 01 — МАТЕРИАЛЫ */
.tag {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 18px;
  font: 600 11.5px/1 var(--mono);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.tag::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.tag b { font-weight: 700; }

.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ─────────────── шапка ─────────────── */

.hdr {
  position: sticky; top: 0; z-index: 120;
  background: rgba(238,240,242,.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr__in {
  max-width: var(--wrap); margin: 0 auto; padding: 13px var(--pad);
  display: flex; align-items: center; gap: 14px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo img { height: 34px; width: 34px; flex: none; }


.logo__txt b {
  display: block; font-size: 16.5px; font-weight: 700;
  letter-spacing: .09em; line-height: 1;
}
.logo__txt b i { font-style: normal; font-weight: 300; }
.logo__txt em {
  display: none; font-style: normal;
  font: 500 10px/1 var(--mono); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-dim); margin-top: 5px;
}

.nav { display: none; }

.hdr__tel {
  display: none; font-family: var(--mono); font-size: 15px;
  font-weight: 600; text-decoration: none; white-space: nowrap;
}
.hdr__tel:hover { color: var(--accent); }

/* бургер */
.burger {
  width: 42px; height: 42px; flex: none; padding: 0;
  background: none; border: 1px solid var(--line); border-radius: var(--r);
  cursor: pointer; display: grid; place-content: center; gap: 5px;
}
.burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); transition: .22s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 110;
  background: var(--paper);
  padding: 78px var(--pad) calc(30px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s ease;
  overflow-y: auto;
}
/* display:flex перебивает браузерный [hidden]{display:none} — возвращаем явно,
   иначе закрытое меню остаётся доступным с клавиатуры */
.drawer[hidden] { display: none; }
.drawer.open { transform: none; }
.drawer a {
  padding: 17px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; font-size: 20px; font-weight: 600;
  display: flex; align-items: baseline; gap: 12px;
}
.drawer a span { font: 500 11px/1 var(--mono); color: var(--ink-dim); }
.drawer a[aria-current] { color: var(--accent); }
.drawer__tel {
  margin-top: auto; padding-top: 26px;
  font-family: var(--mono); font-size: 21px; font-weight: 600;
  text-decoration: none; border: 0 !important;
}

/* ─────────────── кнопки ─────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 28px; border-radius: var(--r);
  font: 600 15.5px/1 var(--sans); text-decoration: none; text-align: center;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .16s, color .16s, border-color .16s;
}
.btn--main  { background: var(--ink); color: #fff; }
.btn--main:hover { background: var(--accent); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent); color: #fff; }
.btn--acc   { background: var(--accent); color: #fff; }
.btn--acc:hover { background: var(--accent-dk); }
.btn--wide  { width: 100%; }

/* ─────────────── первый экран ─────────────── */

.hero { padding: 34px 0 44px; }
.hero__eyebrow {
  font: 500 11.5px/1.5 var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 18px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 i { font-style: normal; color: var(--accent); }
.hero__sub { color: var(--ink-soft); font-size: clamp(15px, 4vw, 18px); max-width: 31em; }
.hero__cta { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }

/* техкарта — фирменный элемент вместо фото */
.spec {
  margin-top: 32px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r);
}
.spec__hd {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  font: 600 10.5px/1 var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-dim);
}
.spec__rows { margin: 0; }
.spec__row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid var(--line-2);
}
.spec__row:last-child { border-bottom: 0; }
.spec__row dt { color: var(--ink-soft); font-size: 14px; }
.spec__row dd { margin: 0; font-family: var(--mono); font-size: 14px; font-weight: 600; text-align: right; }
.spec__sw { display: flex; gap: 5px; }
.spec__sw i { width: 20px; height: 20px; border-radius: 2px; border: 1px solid rgba(0,0,0,.12); }

/* ─────────────── секции ─────────────── */

.sect { padding: 52px 0; }
.sect--tight { padding: 36px 0; }
.sect--ink { background: var(--ink); color: #cdd4d9; }
.sect--ink h2, .sect--ink h3 { color: #fff; }
.sect--ink .tag { color: var(--accent-lt); }
.sect--ink .tag::after { background: #2b343a; }
.sect--ink .lead-txt { color: #9aa4ac; }
.sect--card { background: var(--card); }

.sect__head { margin-bottom: 30px; }
.sect__head h2 + .lead-txt { margin-top: 14px; }

/* ─────────────── материалы ─────────────── */

.mats { display: grid; gap: 16px; }
.mat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  display: flex; flex-direction: column; text-decoration: none;
  transition: border-color .16s, transform .16s;
}
.mat:hover { border-color: var(--ink); }
.mat__sw { height: 122px; border-bottom: 1px solid var(--line); position: relative; }
.mat__sw span {
  position: absolute; right: 10px; top: 10px;
  background: rgba(255,255,255,.94); padding: 4px 9px; border-radius: 2px;
  font: 600 10px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase;
}
.mat__bd { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.mat__bd p { color: var(--ink-soft); font-size: 14.5px; margin: 8px 0 0; }
.mat__facts {
  margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line-2);
  display: grid; gap: 8px; font-size: 13.5px;
}
.mat__facts div { display: flex; justify-content: space-between; gap: 10px; }
.mat__facts dt { color: var(--ink-soft); margin: 0; }
.mat__facts dd { margin: 0; font-family: var(--mono); font-weight: 600; }
.mat__go {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2);
  font: 600 13.5px/1 var(--sans); color: var(--accent);
  display: flex; align-items: center; gap: 7px;
}
.mat__go::after { content: "→"; }

/* фактуры материалов на CSS */
.sw-plaster {
  background:
    repeating-linear-gradient(-16deg, rgba(90,80,68,.14) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(70deg, rgba(90,80,68,.09) 0 1px, transparent 1px 7px),
    linear-gradient(150deg, #e2ddd4, #cfc8bc);
}
.sw-clinker {
  background: url("/img/tex-clinker.svg") 0 0 / 112px 52px repeat, #cdc6bb;
}
.sw-decor {
  background:
    linear-gradient(180deg,
      #fbfaf7 0 26%, #e8e3da 26% 31%, #fdfcfa 31% 44%,
      #ddd7cc 44% 50%, #fdfcfa 50% 63%, #e8e3da 63% 68%, #fbfaf7 68% 100%);
  box-shadow: inset 0 0 30px rgba(90,80,68,.14);
}

/* ─────────────── список-этапы ─────────────── */

.flow { list-style: none; margin: 0; padding: 0; counter-reset: f; }
.flow li {
  counter-increment: f; position: relative;
  padding: 20px 0 20px 46px; border-top: 1px solid var(--line);
}
.flow li:last-child { border-bottom: 1px solid var(--line); }
.flow li::before {
  content: counter(f, decimal-leading-zero);
  position: absolute; left: 0; top: 22px;
  font: 600 12px/1 var(--mono); color: var(--accent); letter-spacing: .06em;
}
.flow b { display: block; font-size: 16.5px; margin-bottom: 5px; }
.flow span { color: var(--ink-soft); font-size: 14.5px; }

/* ─────────────── таблица сравнения ─────────────── */

.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl { border-collapse: collapse; width: 100%; min-width: 540px; font-size: 14.5px; }
.tbl th, .tbl td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl thead th {
  font: 600 10.5px/1.3 var(--mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-dim); white-space: nowrap;
}
.tbl tbody th { font-weight: 600; }
.tbl td { color: var(--ink-soft); }
.tbl .y { color: #14785f; font-weight: 600; }
.tbl .m { color: #9a6a12; }
.tbl .n { color: var(--ink-dim); }
.sect--ink .tbl th, .sect--ink .tbl td { border-color: #2b343a; }
.sect--ink .tbl tbody th { color: #fff; }
.sect--ink .tbl td { color: #9aa4ac; }
.sect--ink .tbl .y { color: #6fd3ac; }
.sect--ink .tbl .m { color: #dfb45f; }

/* ─────────────── врезка ─────────────── */

.callout {
  border-left: 2px solid var(--accent); padding: 2px 0 2px 16px;
  color: var(--ink-soft); font-size: 15px; max-width: 46em;
}
.sect--ink .callout { color: #9aa4ac; border-color: var(--accent-lt); }

/* ─────────────── калькулятор ─────────────── */

.calc { display: grid; gap: 26px; }
.calc__form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px;
}
.calc__form fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.calc__form legend {
  padding: 0; margin-bottom: 12px;
  font: 600 10.5px/1 var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-dim);
}
.calc__range { display: flex; align-items: center; gap: 14px; }
.calc__range input[type=range] {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 2px; background: var(--line); outline: none;
}
.calc__range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); cursor: pointer; border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.28);
}
.calc__range input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); cursor: pointer; border: 3px solid #fff;
}
.calc__range output {
  font: 700 17px/1 var(--mono); min-width: 82px; text-align: right;
  font-variant-numeric: tabular-nums;
}
.calc__hint { margin: 10px 0 0; font-size: 13px; color: var(--ink-soft); }

.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.opts label { position: relative; }
.opts input { position: absolute; opacity: 0; inset: 0; }
.opts span {
  display: block; text-align: center; padding: 13px 8px;
  border: 1.5px solid var(--line); border-radius: var(--r);
  font-size: 14.5px; font-weight: 600; cursor: pointer;
}
.opts input:checked + span { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-dk); }
.opts input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.calc__out {
  background: var(--ink); color: #fff; border-radius: var(--r);
  padding: 20px; text-align: center; margin-bottom: 18px;
}
.calc__out .calc__lbl {
  display: block; font: 500 10.5px/1 var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: #7f8b93; margin-bottom: 9px;
}
.calc__out strong {
  display: block; font: 700 clamp(22px, 6.4vw, 30px)/1.1 var(--mono);
  font-variant-numeric: tabular-nums;
}
.calc__out .calc__per { display: block; font-size: 12.5px; color: #7f8b93; margin-top: 8px; }

.field-row { display: grid; gap: 10px; }

/* ─────────────── формы ─────────────── */

label.lbl { display: block; margin: 15px 0 7px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
label.lbl span { font-weight: 400; color: var(--ink-dim); }

input[type=text], input[type=tel], input[type=email], textarea, select {
  width: 100%; padding: 15px 14px; font: 400 16px/1.4 var(--sans);
  border: 1.5px solid var(--line); border-radius: var(--r);
  background: #fff; color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); }
input.err, textarea.err { border-color: #c0392b; background: #fdf6f5; }
textarea { resize: vertical; }

.policy { margin: 12px 0 0; font-size: 12px; color: var(--ink-dim); }
.policy a { color: var(--ink-soft); }
.form-msg { margin: 14px 0 0; font-size: 14.5px; font-weight: 600; }
.form-msg.ok  { color: #14785f; }
.form-msg.bad { color: #c0392b; }

.lead-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px 20px;
}
.sect--ink .lead-card { color: var(--ink); }

/* ─────────────── галерея ─────────────── */

.grid-shots { display: grid; gap: 12px; }
.shot { margin: 0; }
.shot__ph {
  border-radius: var(--r); aspect-ratio: 4/3;
  border: 1px dashed var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(15,107,125,.045) 0 8px, transparent 8px 16px),
    var(--card);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 18px;
  font: 500 12.5px/1.4 var(--mono); color: var(--ink-dim);
}
.shot__ph::after { content: attr(data-ph); }
.shot img { border-radius: var(--r); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.shot--wide .shot__ph, .shot--wide img { aspect-ratio: 16/10; }
.shot figcaption { margin-top: 9px; font-size: 13.5px; color: var(--ink-soft); }

/* ─────────────── вопросы ─────────────── */

.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 18px 34px 18px 0; position: relative;
  font-weight: 600; font-size: 16px; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 11px; height: 11px; margin-top: -8px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details p { margin: 0 0 18px; color: var(--ink-soft); font-size: 15px; max-width: 46em; }

/* ─────────────── контакты ─────────────── */

.contacts { display: grid; gap: 28px; }
.contacts__tel {
  display: block; font: 700 clamp(23px, 6.6vw, 34px)/1 var(--mono);
  text-decoration: none; letter-spacing: -.02em;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chips a {
  padding: 9px 15px; border: 1px solid var(--line); border-radius: var(--r);
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.chips a:hover { border-color: var(--ink); }
.sect--ink .chips a { border-color: #2b343a; color: #cdd4d9; }
.sect--ink .sect__head + * .contacts__tel, .sect--ink .contacts__tel { color: #fff; }

/* ─────────────── низ ─────────────── */

.cta-band { background: var(--accent); color: #fff; }
.cta-band .wrap { padding-top: 42px; padding-bottom: 42px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 38em; margin-top: 12px; }
.cta-band .btn { margin-top: 22px; }

.ftr { background: var(--ink); color: #8b949c; padding: 44px 0 0; }
.ftr__in { display: grid; gap: 26px; }
.ftr__brand .logo__txt b { color: #fff; }
.ftr__brand p { margin: 14px 0 0; font-size: 14px; max-width: 30em; }
.ftr h4 {
  font: 600 10.5px/1 var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: #5d666e; margin-bottom: 14px;
}
.ftr nav { display: grid; gap: 11px; }
.ftr a { text-decoration: none; font-size: 14.5px; }
.ftr a:hover { color: #fff; }
.ftr__tel { font: 700 19px/1 var(--mono); color: #fff !important; }
.ftr__bottom {
  margin-top: 36px; border-top: 1px solid #222a2f;
  padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 12.5px;
}

/* ─────────────── кнопка звонка (мобильный) ─────────────── */

.callbtn {
  position: fixed; z-index: 100;
  left: var(--pad); right: var(--pad);
  bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px; border-radius: var(--r);
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 15.5px; text-decoration: none;
  box-shadow: 0 10px 30px -8px rgba(15,20,24,.6);
  transform: translateY(150%); transition: transform .28s ease;
}
.callbtn.show { transform: none; }
.callbtn svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 899px) { .ftr { padding-bottom: 74px; } }

/* ─────────────── страница-документ ─────────────── */

.doc { max-width: 780px; }
.doc h2 { font-size: clamp(19px, 4.4vw, 23px); margin: 34px 0 10px; }
.doc p, .doc li { color: var(--ink-soft); font-size: 15.5px; }
.doc ul { padding-left: 20px; }

.crumbs { font: 500 12px/1 var(--mono); color: var(--ink-dim); padding: 20px 0 0; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--accent); }

/* ============================================================
   ПЛАНШЕТ
   ============================================================ */
@media (min-width: 620px) {
  .hero__cta { flex-direction: row; }
  .mats { grid-template-columns: repeat(2, 1fr); }
  .opts { grid-template-columns: repeat(3, 1fr); }
  .field-row { grid-template-columns: 1fr auto; }
  .grid-shots { grid-template-columns: repeat(2, 1fr); }
  .shot--wide { grid-column: span 2; }
  .ftr__in { grid-template-columns: 1.5fr 1fr 1fr; }
  .lead-card { padding: 30px; }
  .contacts { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ДЕСКТОП
   ============================================================ */
@media (min-width: 900px) {
  html { scroll-padding-top: 96px; }
  .sect { padding: 82px 0; }
  .sect--tight { padding: 52px 0; }
  .hero { padding: 64px 0 34px; }

  .burger, .drawer { display: none; }
  .nav { display: flex; gap: 24px; margin-right: 26px; }
  .nav a {
    text-decoration: none; font-size: 14.5px; font-weight: 500;
    color: var(--ink-soft); padding: 5px 0; position: relative;
  }
  .nav a:hover { color: var(--ink); }
  .nav a[aria-current] { color: var(--ink); font-weight: 600; }
  .nav a[aria-current]::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
    height: 2px; background: var(--accent);
  }
  .hdr__tel { display: block; }
  .logo__txt em { display: block; }

  .hero__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
  .spec { margin-top: 0; }

  .mats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .mat__sw { height: 150px; }

  .tbl { min-width: 0; font-size: 15.5px; }
  .flow--2col { columns: 2; column-gap: 48px; }
  .flow--2col li { break-inside: avoid; }

  .calc { grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
  .calc__form { padding: 30px; }

  .grid-shots { grid-template-columns: repeat(3, 1fr); }
  .shot--wide { grid-column: span 2; grid-row: span 2; }
  .shot--wide .shot__ph, .shot--wide img { aspect-ratio: auto; height: 100%; min-height: 330px; }

  .callbtn { display: none; }
  .faq summary { font-size: 17px; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}

@media (min-width: 1200px) {
  .hero__in { gap: 76px; }
}
