:root {

  --ink: #141c25;
  --ink-2: #4d5a66;
  --slate-950: #101820;
  --slate-900: #16202b;
  --slate-800: #22303e;
  --slate-700: #2c3b4d;
  --slate-600: #3d5265;
  --line: #dde3e9;
  --line-2: #c5cfd8;
  --paper: #f4f6f8;
  --paper-2: #e9edf1;
  --white: #ffffff;
  --copper: #b0480f;
  --copper-2: #d9762f;
  --copper-ink: #9c3f12;
  --copper-soft: #fbeee4;
  --alert: #b3261e;
  --alert-soft: #fdeceb;
  --ok: #1c6b45;

  --r: 4px;
  --r-lg: 8px;
  --sh: 0 1px 2px rgba(16, 24, 32, .06), 0 8px 20px -12px rgba(16, 24, 32, .28);
  --sh-lg: 0 22px 46px -22px rgba(16, 24, 32, .5);
  --maxw: 1180px;

  --f-head: "Franklin Gothic Medium", "Segoe UI Semibold", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --f-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, "Roboto Mono", "Courier New", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--f-head); line-height: 1.14; font-weight: 600; }
h2 { letter-spacing: .01em; }

a { color: inherit; text-decoration: none; }
p a:not(.btn) { color: var(--copper-ink); text-decoration: underline; text-underline-offset: 2px; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

button, input, select, textarea { font: inherit; color: inherit; }

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

[hidden] { display: none !important; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.mono { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }

.skip {
  position: absolute; left: 10px; top: -80px; z-index: 500;
  background: var(--copper); color: #fff; font-weight: 700;
  padding: 11px 18px; border-radius: var(--r); transition: top .2s ease;
}
.skip:focus { top: 10px; }

.section { padding: 58px 0; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--dark { background: var(--slate-900); color: #dbe3ea; }
.section--dark h2, .section--dark h3 { color: #fff; }

.sec-head { max-width: 660px; margin-bottom: 32px; }
.sec-head.center { margin-inline: auto; text-align: center; }

.section h2, .sec-head h2 { font-size: clamp(1.65rem, 6vw, 2.4rem); text-transform: uppercase; }
.sec-head p { margin-top: 12px; color: var(--ink-2); font-size: 1.03rem; }
.section--dark .sec-head p { color: #a9b7c4; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper-ink); margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 20px; height: 3px; background: var(--copper); }
.section--dark .eyebrow { color: var(--copper-2); }
.section--dark .eyebrow::before { background: var(--copper-2); }

.seam { height: 10px; background: repeating-linear-gradient(90deg, var(--slate-900) 0 20px, var(--copper) 20px 23px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border: 2px solid transparent; border-radius: var(--r);
  font-family: var(--f-head); font-weight: 700; font-size: .98rem;
  letter-spacing: .02em; cursor: pointer; text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .15s ease;
  min-height: 46px;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: 0 0 18px; }
.btn-pri { background: var(--copper); color: #fff; }
.btn-pri:hover { background: #92390a; }
.btn-dark { background: var(--slate-900); color: #fff; }
.btn-dark:hover { background: var(--slate-700); }
.btn-out { background: transparent; color: var(--slate-900); border-color: var(--line-2); }
.btn-out:hover { border-color: var(--slate-900); background: var(--white); }
.btn-ghost { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost:hover { background: rgba(255, 255, 255, .2); border-color: #fff; }
.btn-alert { background: var(--alert); color: #fff; }
.btn-alert:hover { background: #8e1c16; }
.btn-sm { padding: 9px 15px; font-size: .88rem; min-height: 40px; }
.btn-block { width: 100%; }

.hdr-top { background: var(--slate-950); color: #9fb0bf; font-size: .8rem; display: none; }
.hdr-top-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-block: 7px; }
.hdr-top a { color: #fff; font-family: var(--f-mono); font-weight: 700; }
.hdr-top a:hover { color: var(--copper-2); }
.hdr-top .dot { color: var(--copper-2); }

.hdr { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--line); }
.hdr.scrolled { box-shadow: var(--sh); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 18px; }

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark { width: 40px; height: 40px; flex: 0 0 40px; }
.brand-txt { min-width: 0; }
.brand-name {
  display: block; font-family: var(--f-head); font-weight: 700;
  font-size: 1.16rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--slate-900); line-height: 1.05;
}
.brand-sub { display: block; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }

.nav { display: none; align-items: center; gap: 22px; }
.nav a { font-weight: 600; font-size: .95rem; color: var(--slate-800); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--copper-ink); border-bottom-color: var(--copper); }
.nav a[aria-current="page"] { color: var(--copper-ink); border-bottom-color: var(--copper); }
.hdr-cta { display: none; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; min-height: 46px; padding: 0 11px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--slate-900); }

.mm {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(86vw, 330px); background: var(--slate-900); color: #fff;
  transform: translateX(102%); transition: transform .28s ease;
  padding: 74px 22px 26px; display: flex; flex-direction: column; gap: 2px;
  box-shadow: -18px 0 40px rgba(0, 0, 0, .3); overflow-y: auto;
}
.mm.open { transform: none; }
.mm a { padding: 13px 2px; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: 1.06rem; font-weight: 600; }
.mm a:hover { color: var(--copper-2); }
.mm .btn { margin-top: 18px; }
.mm-tel { margin-top: 20px; font-family: var(--f-mono); font-size: .86rem; color: #a9b7c4; border-bottom: 0; }
.mm-close {
  position: absolute; top: 16px; right: 16px; width: 46px; min-width: 46px; min-height: 46px;
  background: rgba(255, 255, 255, .12); border: 0; color: #fff; border-radius: var(--r);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.mm-back { position: fixed; inset: 0; z-index: 150; background: rgba(10, 16, 22, .55); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; }
.mm-back.open { opacity: 1; visibility: visible; }

.hero { position: relative; background: var(--slate-950); color: #fff; overflow: hidden; }
.hero-ph { position: absolute; inset: 0; background: linear-gradient(150deg, #2b3a4a 0%, #101820 70%); }
.hero-ph img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 18, 24, .8) 0%, rgba(12, 18, 24, .58) 45%, rgba(12, 18, 24, .92) 100%); }
.hero-in { position: relative; z-index: 2; padding: 54px 0 42px; }
.hero-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217, 118, 47, .18); border: 1px solid rgba(217, 118, 47, .55);
  color: #ffd9bd; font-family: var(--f-mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r);
}
.hero h1 { font-size: clamp(2rem, 8.6vw, 3.5rem); margin-top: 18px; max-width: 17ch; text-transform: uppercase; letter-spacing: -.01em; }
.hero h1 em { font-style: normal; color: var(--copper-2); }
.hero-lead { margin-top: 16px; max-width: 50ch; font-size: 1.05rem; color: #cdd8e1; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.hero-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 12px; margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .16); padding-top: 22px; }
.hero-facts > * { min-width: 0; }
.hero-fact strong { display: block; font-family: var(--f-mono); font-size: 1.55rem; font-weight: 700; color: #fff; line-height: 1.1; }
.hero-fact span { font-size: .82rem; color: #a9b7c4; }

.strip { background: var(--copper); color: #fff; }
.strip-in { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 18px 0; }
.strip-it { display: flex; gap: 10px; align-items: flex-start; min-width: 0; }
.strip-it svg { flex: 0 0 22px; margin-top: 2px; }
.strip-it b { display: block; font-size: .95rem; }
.strip-it span { font-size: .84rem; color: #ffeadd; }

.cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cards > * { min-width: 0; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 20px; box-shadow: var(--sh);
  border-top: 3px solid var(--slate-800);
  transition: border-top-color .18s ease, transform .18s ease;
}
.card:hover { border-top-color: var(--copper); transform: translateY(-2px); }
.card-ico { width: 34px; height: 34px; color: var(--copper); margin-bottom: 12px; }
.card h3 { font-size: 1.14rem; text-transform: uppercase; letter-spacing: .02em; }
.card p { margin-top: 8px; color: var(--ink-2); font-size: .95rem; }
.card ul { margin-top: 12px; list-style: none; display: grid; gap: 5px; }
.card li { position: relative; padding-left: 16px; font-size: .9rem; color: var(--ink-2); }
.card li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 2px; background: var(--copper); }
.card .price { display: block; margin-top: 14px; font-family: var(--f-mono); font-weight: 700; color: var(--slate-900); font-size: .95rem; }

.calc { display: grid; grid-template-columns: 1fr; gap: 18px; }
.calc > * { min-width: 0; }
.calc-in { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 18px; box-shadow: var(--sh); }
.cf { padding: 16px 0; border-bottom: 1px dashed var(--line); border-width: 0 0 1px; }
.cf:first-child { padding-top: 0; }
.cf:last-child { border-bottom: 0; padding-bottom: 0; }

.cf > label:not(.chkline), .cf legend { display: block; font-family: var(--f-head); font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; color: var(--slate-900); margin-bottom: 4px; }
.cf .hint { display: block; font-family: var(--f-body); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .84rem; color: var(--ink-2); }
.cf-note { margin-top: 8px; font-size: .84rem; color: var(--ink-2); }
.cf-note.warn { color: #8e1c16; background: var(--alert-soft); border-left: 3px solid var(--alert); padding: 8px 10px; }

.cf-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.cf-row > * { min-width: 0; }
.num {
  width: 108px; max-width: 100%; padding: 10px 12px; border: 1.5px solid var(--line-2);
  border-radius: var(--r); background: var(--paper); font-family: var(--f-mono);
  font-weight: 700; font-size: 1.05rem;
}
.num:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(176, 72, 15, .16); }
.unit { font-family: var(--f-mono); font-size: .92rem; color: var(--ink-2); }
.calc input[type="range"] { width: 100%; accent-color: var(--copper); min-height: 28px; }
.range-flex { flex: 1 1 150px; }
.out-big { font-family: var(--f-mono); font-weight: 700; font-size: 1.2rem; color: var(--slate-900); min-width: 58px; text-align: right; }

.chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 10px; }
.chips > * { min-width: 0; }
.chip { display: block; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: flex; align-items: center; gap: 8px; min-height: 46px;
  border: 1.5px solid var(--line-2); border-radius: var(--r);
  padding: 8px 10px; font-size: .9rem; font-weight: 600; background: var(--paper);
  transition: border-color .15s ease, background-color .15s ease;
}
.chip span::before { content: ""; width: 15px; height: 15px; flex: 0 0 15px; border-radius: 2px; background: var(--sw, #999); border: 1px solid rgba(0, 0, 0, .25); }
.chip input:checked + span { border-color: var(--copper); background: var(--copper-soft); box-shadow: inset 0 0 0 1px var(--copper); }
.chip input:focus-visible + span { outline: 3px solid var(--copper-2); outline-offset: 2px; }

.opts { display: grid; gap: 8px; margin-top: 10px; }
.opt { display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt > span {
  display: block; border: 1.5px solid var(--line-2); border-radius: var(--r);
  padding: 11px 13px; background: var(--paper); transition: border-color .15s ease, background-color .15s ease;
}
.opt strong { display: block; font-size: .96rem; }
.opt small { display: block; color: var(--ink-2); font-size: .82rem; line-height: 1.45; }
.opt input:checked + span { border-color: var(--copper); background: var(--copper-soft); box-shadow: inset 0 0 0 1px var(--copper); }
.opt input:focus-visible + span { outline: 3px solid var(--copper-2); outline-offset: 2px; }

.chkline { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: .94rem; cursor: pointer; }
.chkline input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; accent-color: var(--copper); }
.chkline > span { min-width: 0; }
.chkline small { font-size: .82rem; line-height: 1.45; margin-top: 2px; }

.calc-out { background: var(--slate-900); color: #dbe3ea; border-radius: var(--r); padding: 22px 18px; box-shadow: var(--sh-lg); }
.calc-out h3 { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; }
.co-price { font-family: var(--f-mono); font-weight: 700; color: #fff; font-size: clamp(1.5rem, 6.4vw, 2.05rem); line-height: 1.18; margin-top: 12px; }
.co-price .to { color: var(--copper-2); }
.co-sub { font-size: .86rem; color: #a9b7c4; margin-top: 6px; }
.co-tab { margin-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14); }
.item-line { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .09); font-size: .9rem; }
.item-line > * { min-width: 0; }
.item-line span:first-child { color: #c3cfd9; }
.item-line b { font-family: var(--f-mono); color: #fff; font-weight: 700; white-space: nowrap; }
.item-line.sum { border-bottom: 0; padding-top: 12px; font-size: 1rem; }
.co-box { margin-top: 16px; background: rgba(217, 118, 47, .14); border: 1px solid rgba(217, 118, 47, .4); border-radius: var(--r); padding: 13px 14px; }
.co-box b { color: #ffd9bd; font-family: var(--f-mono); }
.co-box p { font-size: .86rem; color: #cdd8e1; margin-top: 3px; }
.co-mat { margin-top: 14px; font-size: .84rem; color: #a9b7c4; }
.co-mat strong { color: #fff; }
.calc-out .btn { margin-top: 16px; }
.calc-note { margin-top: 14px; font-size: .84rem; color: #94a4b3; }

.ba-wrap { max-width: 900px; margin-inline: auto; }
.ba {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--line-2);
  background: linear-gradient(150deg, #d8dfe6, #b6c2cd);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .25); pointer-events: none; }
.ba-knob {
  position: absolute; top: 50%; left: var(--pos, 50%); width: 46px; height: 46px; margin: -23px 0 0 -23px;
  border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  display: flex; align-items: center; justify-content: center; color: var(--slate-900); pointer-events: none;
}
.ba-tag {
  position: absolute; bottom: 10px; font-family: var(--f-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; background: rgba(16, 24, 32, .82); color: #fff;
  padding: 5px 9px; border-radius: 2px; pointer-events: none;
}
.ba-tag.l { left: 10px; }
.ba-tag.r { right: 10px; background: rgba(176, 72, 15, .92); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba:focus-within .ba-knob { box-shadow: 0 0 0 4px var(--copper-2), 0 4px 14px rgba(0, 0, 0, .35); }
.ba-cap { margin-top: 12px; font-size: .9rem; color: var(--ink-2); }
.ba-cap strong { color: var(--slate-900); }

.steps { display: grid; grid-template-columns: 1fr; gap: 0; counter-reset: stepBox; }
.step { position: relative; padding: 18px 0 18px 56px; border-bottom: 1px solid var(--line); counter-increment: stepBox; }
.step:last-child { border-bottom: 0; }
.step::before {
  content: counter(stepBox, decimal-leading-zero);
  position: absolute; left: 0; top: 18px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--slate-900); color: #fff; font-family: var(--f-mono); font-weight: 700; font-size: .9rem;
  border-radius: var(--r);
}
.step h3 { font-size: 1.06rem; text-transform: uppercase; letter-spacing: .03em; }
.step p { color: var(--ink-2); font-size: .94rem; margin-top: 5px; }
.step .when { display: inline-block; margin-top: 8px; font-family: var(--f-mono); font-size: .78rem; color: var(--copper-ink); background: var(--copper-soft); padding: 3px 8px; border-radius: 2px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.fbtn {
  background: var(--white); border: 1.5px solid var(--line-2); color: var(--slate-800);
  border-radius: var(--r); padding: 9px 15px; font-weight: 600; font-size: .9rem; cursor: pointer; min-height: 42px;
}
.fbtn:hover { border-color: var(--slate-900); }
.fbtn[aria-pressed="true"] { background: var(--slate-900); border-color: var(--slate-900); color: #fff; }

.gal { display: grid; grid-template-columns: 1fr; gap: 14px; }
.gal > * { min-width: 0; }
.job { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); display: flex; flex-direction: column; }
.job-ph { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(150deg, #dfe5ea, #b9c5d0); border: 0; padding: 0; margin: 0; display: block; width: 100%; overflow: hidden; }

button.job-ph { cursor: zoom-in; }
.job.wide .job-ph { aspect-ratio: 16 / 9; }
.job-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.job-ph:hover img { transform: scale(1.04); }
.job-badge { position: absolute; top: 10px; left: 10px; background: rgba(16, 24, 32, .85); color: #fff; font-family: var(--f-mono); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; border-radius: 2px; }
.job-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.job-body h3 { font-size: 1.08rem; text-transform: uppercase; letter-spacing: .02em; }
.job-body p { color: var(--ink-2); font-size: .92rem; margin-top: 7px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.job-meta span { font-family: var(--f-mono); font-size: .74rem; background: var(--paper-2); color: var(--slate-700); padding: 3px 8px; border-radius: 2px; }
.job-price { margin-top: auto; padding-top: 12px; font-family: var(--f-mono); font-size: .88rem; color: var(--slate-900); font-weight: 700; }
.job-price small { display: block; font-family: var(--f-body); font-weight: 400; color: var(--ink-2); font-size: .78rem; }

.lb { position: fixed; inset: 0; z-index: 300; background: rgba(10, 16, 22, .93); display: none; align-items: center; justify-content: center; padding: 16px; }
.lb.open { display: flex; }
.lb-in { max-width: 980px; width: 100%; }
.lb-in img { width: 100%; max-height: 74vh; object-fit: contain; border-radius: var(--r); }
.lb-cap { color: #fff; text-align: center; margin-top: 12px; font-size: .92rem; }
.lb-close { position: absolute; top: 14px; right: 14px; width: 48px; min-height: 48px; background: rgba(255, 255, 255, .14); border: 0; color: #fff; border-radius: var(--r); font-size: 1.7rem; line-height: 1; cursor: pointer; }

.tbl-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }
table.tbl { width: 100%; border-collapse: collapse; min-width: 560px; }
table.tbl th, table.tbl td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
table.tbl th { background: var(--slate-900); color: #fff; font-family: var(--f-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
table.tbl tbody tr:nth-child(even) { background: var(--paper); }
table.tbl td.n { font-family: var(--f-mono); white-space: nowrap; }
.tbl-note { font-size: .84rem; color: var(--ink-2); margin-top: 10px; }

.revs { display: grid; grid-template-columns: 1fr; gap: 14px; }
.revs > * { min-width: 0; }
.rev { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--copper); border-radius: var(--r); padding: 20px 18px; box-shadow: var(--sh); }
.rev .stars { color: var(--copper); letter-spacing: 2px; font-size: 1rem; }
.rev blockquote { margin-top: 10px; font-size: .97rem; color: var(--ink); }
.rev-who { display: flex; align-items: center; gap: 11px; margin-top: 16px; }
.rev-ava { width: 40px; height: 40px; flex: 0 0 40px; border-radius: var(--r); background: var(--slate-900); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; }
.rev-who strong { display: block; font-size: .93rem; }
.rev-who span { font-size: .82rem; color: var(--ink-2); }

.split { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
.split > * { min-width: 0; }
.split-ph { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 4 / 3; background: linear-gradient(150deg, #dfe5ea, #b9c5d0); }
.split-ph img { width: 100%; height: 100%; object-fit: cover; }
.split-txt p { color: var(--ink-2); margin-top: 13px; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.facts > * { min-width: 0; }
.fact { border-left: 3px solid var(--copper); padding-left: 12px; }
.fact strong { display: block; font-family: var(--f-mono); font-size: 1.4rem; color: var(--slate-900); line-height: 1.1; }
.fact span { font-size: .84rem; color: var(--ink-2); }
.sign { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .92rem; color: var(--ink-2); }
.sign strong { display: block; color: var(--slate-900); font-family: var(--f-head); font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; }

.contact { display: grid; grid-template-columns: 1fr; gap: 24px; }
.contact > * { min-width: 0; }
.info { list-style: none; display: grid; gap: 15px; margin-top: 20px; }
.info li { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
.info svg { flex: 0 0 22px; color: var(--copper); margin-top: 3px; }
.info strong { display: block; font-size: .93rem; color: var(--slate-900); }
.info span, .info a { font-size: .92rem; color: var(--ink-2); word-break: break-word; }
.info a { color: var(--copper-ink); font-weight: 600; }
.zone { margin-top: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; }
.zone h3 { font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; }
.zone p { font-size: .9rem; color: var(--ink-2); margin-top: 7px; }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 18px; box-shadow: var(--sh); }
.form h3 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: .03em; }
.form > p { font-size: .92rem; color: var(--ink-2); margin-top: 6px; margin-bottom: 16px; }
.f2 { display: grid; grid-template-columns: 1fr; gap: 0 14px; }
.f2 > * { min-width: 0; }
.fld { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fld label { font-size: .85rem; font-weight: 700; color: var(--slate-900); }
.fld .req { color: var(--alert); }
.fld input, .fld select, .fld textarea {
  width: 100%; max-width: 100%; min-width: 0;
  padding: 11px 12px; border: 1.5px solid var(--line-2); border-radius: var(--r);
  background: var(--paper); font-size: 1rem;
}
.fld textarea { min-height: 96px; resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(176, 72, 15, .16); background: var(--white); }
.fld input:user-invalid, .fld textarea:user-invalid { border-color: var(--alert); }
.fld .err { font-size: .8rem; color: #8e1c16; display: none; }
.fld.bad .err { display: block; }
.fld.bad input, .fld.bad select, .fld.bad textarea { border-color: var(--alert); background: var(--alert-soft); }
.form-fine { font-size: .8rem; color: var(--ink-2); margin-top: 4px; }
.form-msg { display: none; margin-top: 14px; border: 1px solid var(--copper); background: var(--copper-soft); border-radius: var(--r); padding: 13px 14px; font-size: .94rem; }
.form-msg.show { display: block; }
.form-msg strong { color: var(--copper-ink); }

.alertbar { background: var(--alert); color: #fff; }
.alertbar-in { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; padding: 14px 0; }
.alertbar-in > * { min-width: 0; }
.alertbar b { font-family: var(--f-head); text-transform: uppercase; letter-spacing: .05em; }
.alertbar a.tel { font-family: var(--f-mono); font-weight: 700; font-size: 1.1rem; color: #fff; border-bottom: 2px solid rgba(255, 255, 255, .55); }

.now { display: grid; grid-template-columns: 1fr; gap: 12px; }
.now > * { min-width: 0; }
.now-it { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--alert); border-radius: var(--r); padding: 16px; }
.now-it h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .03em; }
.now-it p { font-size: .93rem; color: var(--ink-2); margin-top: 6px; }
.now-it .no { display: inline-block; margin-top: 9px; font-size: .85rem; color: #8e1c16; background: var(--alert-soft); padding: 5px 9px; border-radius: 2px; }

.eta { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 18px; box-shadow: var(--sh); }
.eta-out { margin-top: 16px; background: var(--slate-900); color: #fff; border-radius: var(--r); padding: 18px; }
.eta-out .big { font-family: var(--f-mono); font-weight: 700; font-size: clamp(1.4rem, 6vw, 1.9rem); color: var(--copper-2); }
.eta-out p { font-size: .88rem; color: #a9b7c4; margin-top: 6px; }
.eta-list { list-style: none; margin-top: 14px; display: grid; gap: 7px; }
.eta-list li { display: flex; gap: 9px; font-size: .88rem; color: #cdd8e1; }
.eta-list svg { flex: 0 0 16px; color: var(--copper-2); margin-top: 4px; }

.cta { background: var(--slate-950); color: #fff; text-align: center; }
.cta h2 { font-size: clamp(1.5rem, 6vw, 2.1rem); text-transform: uppercase; }
.cta p { color: #a9b7c4; margin-top: 12px; max-width: 54ch; margin-inline: auto; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; margin-top: 22px; }

.ftr { background: var(--slate-950); color: #9fb0bf; padding: 42px 0 96px; font-size: .92rem; }
.ftr-warn { display: flex; gap: 11px; align-items: flex-start; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .13); border-radius: var(--r); padding: 14px 16px; font-size: .86rem; color: #c3cfd9; margin-bottom: 28px; }
.ftr-warn svg { flex: 0 0 20px; color: var(--copper-2); margin-top: 2px; }
.ftr-warn strong { color: #fff; }
.ftr-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.ftr-grid > * { min-width: 0; }
.ftr .brand-name { color: #fff; }
.ftr .brand-sub { color: #8a9aa8; }
.ftr-brand p { margin-top: 12px; max-width: 42ch; }
.ftr-col h4 { color: #fff; font-size: .86rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 11px; }
.ftr-col a, .ftr-col p { display: block; padding: 3px 0; color: #9fb0bf; }
.ftr-col a:hover { color: var(--copper-2); }
.ftr-col .tel { font-family: var(--f-mono); font-weight: 700; color: #fff; }
.ftr-bot { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .13); font-size: .82rem; color: #7d8d9b; }

.callbar {
  position: fixed; left: 0; right: 0; bottom: var(--frontage-h, 0px); z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--slate-900); box-shadow: 0 -6px 20px rgba(0, 0, 0, .22);
}
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 6px; color: #fff; font-family: var(--f-head); font-weight: 700; font-size: .95rem; min-height: 48px; }
.callbar a.hl { background: var(--copper); }
.callbar svg { width: 18px; height: 18px; flex: 0 0 18px; }

@media (min-width: 560px) {
  .strip-in { grid-template-columns: repeat(2, 1fr); gap: 16px 22px; }
  .chips { grid-template-columns: repeat(2, 1fr); }
  .f2 { grid-template-columns: 1fr 1fr; }
  .hero-facts { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 760px) {
  .wrap { padding: 0 24px; }
  .section { padding: 76px 0; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .gal { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .revs { grid-template-columns: repeat(3, 1fr); }
  .now { grid-template-columns: repeat(2, 1fr); }
  .ftr-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .hero-in { padding: 88px 0 70px; }
  .facts { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1000px) {
  html { scroll-padding-top: 108px; }
  .section { padding: 92px 0; }
  .hdr-top { display: block; }
  .hdr-in { padding: 12px 24px; }
  .nav { display: flex; }
  .hdr-cta { display: inline-flex; }
  .burger { display: none; }
  .callbar { display: none; }
  .ftr { padding-bottom: 42px; }
  .strip-in { grid-template-columns: repeat(4, 1fr); padding: 22px 0; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .gal { grid-template-columns: repeat(3, 1fr); }
  .job.wide { grid-column: span 2; }
  .calc { grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
  .calc-out { position: sticky; top: 118px; padding: 26px 24px; }
  .calc-in { padding: 26px 26px; }
  .steps { grid-template-columns: repeat(2, 1fr); column-gap: 34px; }
  .split { grid-template-columns: 1fr 1.05fr; gap: 40px; }
  .contact { grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
  .hero h1 { max-width: 15ch; }
  .form { padding: 30px 28px; }
}

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