:root {
  color-scheme: light;
  --bg: #f7f2ea;
  --bg-plain: #fffdf8;
  --ink: #171b1a;
  --muted: #5d6761;
  --line: #d9d0c2;
  --panel: #ffffff;
  --panel-soft: #f0e8dc;
  --green: #0d5c52;
  --green-2: #083e39;
  --amber: #bf8a32;
  --brick: #9f4c35;
  --steel: #253033;
  --cream: #fff8ec;
  --dark: #101514;
  --dark-2: #17201f;
  --radius: 8px;
  --shadow: 0 20px 48px rgba(23, 27, 26, 0.12);
  --container: 1180px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(13, 92, 82, 0.45);
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: 3px solid rgba(191, 138, 50, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 32px, 840px);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-120%);
  padding: 10px 14px;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(23, 27, 26, 0.08);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.brand__logo {
  display: block;
  width: min(238px, 42vw);
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.brand__logo + span {
  display: none;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.main-nav a {
  text-decoration: none;
  color: var(--steel);
  font-weight: 650;
  font-size: 14px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: var(--green-2);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-2);
}

.btn--ghost {
  background: rgba(255, 253, 248, 0.88);
  color: var(--green-2);
  border-color: rgba(13, 92, 82, 0.24);
}

.btn--soft,
.btn--secondary {
  background: #f1ddbd;
  color: #4b3411;
  border-color: rgba(191, 138, 50, 0.24);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(6, 18, 17, 0.88) 0%, rgba(6, 18, 17, 0.68) 44%, rgba(6, 18, 17, 0.18) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(16, 21, 20, 0.78));
  z-index: -1;
}

.hero__content {
  padding: 100px 0 84px;
}

.hero h1,
.page-hero h1,
.service-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
}

.hero__lead,
.page-hero p,
.service-hero p,
.section-head p {
  max-width: 760px;
  font-size: 18px;
  color: inherit;
}

.hero__lead {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.88);
}

.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.hero .btn--soft {
  background: rgba(241, 221, 189, 0.92);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-proof strong,
.hero-proof span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: rgba(7, 12, 11, 0.22);
  color: #fff;
  font-size: 14px;
  font-weight: 760;
}

.hero-facts span,
.chips span,
.reason-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 82px 0;
  background: var(--bg);
}

.section--light {
  background: var(--bg-plain);
}

.section--muted {
  background: #ebe2d6;
}

.section--dark {
  color: #f7f2ea;
  background: var(--dark);
}

.section--accent {
  background: #e7d2b2;
}

.section--intent {
  background:
    linear-gradient(135deg, rgba(13, 92, 82, 0.08), rgba(191, 138, 50, 0.14)),
    var(--bg-plain);
}

.section--nearby {
  background: #f3eadc;
}

.section--assurance {
  background: #fffaf2;
}

.section--process {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(235, 226, 214, 0.92)),
    url("/assets/img/site/tools-and-cylinders-near-door.jpg") center / cover;
}

.section--repair {
  background: #fffaf2;
}

.section--offers {
  background:
    linear-gradient(135deg, rgba(13, 92, 82, 0.08), rgba(191, 138, 50, 0.12)),
    var(--bg-plain);
}

.section--stock {
  background: #f4ebdf;
}

.section--credibility,
.section--local-proof {
  background: #fffdf8;
}

.section-head {
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: #f1cf8a;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.22;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.section--dark p {
  color: rgba(247, 242, 234, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 46px;
  align-items: start;
}

.split > * {
  min-width: 0;
}

.split--tight {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 192px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(23, 27, 26, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(23, 27, 26, 0.06);
  color: inherit;
  text-decoration: none;
}

.card h3 {
  margin-top: 2px;
}

.card p {
  flex: 1;
}

.card__arrow {
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intent-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(13, 92, 82, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 42px rgba(23, 27, 26, 0.08);
}

.intent-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(23, 27, 26, 0.1);
  box-shadow: 0 14px 34px rgba(23, 27, 26, 0.07);
}

.proof-strip div {
  min-height: 94px;
  padding: 18px;
  background: #fffdf8;
}

.proof-strip strong,
.proof-strip small {
  display: block;
}

.proof-strip strong {
  color: var(--green-2);
  font-size: 17px;
  line-height: 1.25;
}

.proof-strip small {
  margin-top: 6px;
  color: var(--muted);
}

.proof-strip--vertical {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.proof-strip--vertical div {
  min-height: 84px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(13, 92, 82, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 34px rgba(23, 27, 26, 0.08);
}

.offer-card h3 {
  color: var(--green-2);
}

.stock-panel,
.requisites-card {
  padding: 24px;
  border: 1px solid rgba(23, 27, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.brand-cloud span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(13, 92, 82, 0.18);
  border-radius: 999px;
  background: #fffaf2;
  color: var(--green-2);
  font-weight: 800;
  font-size: 13px;
}

.requisites-card {
  display: grid;
  gap: 12px;
}

.requisites-card div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 27, 26, 0.08);
}

.requisites-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.requisites-card span {
  color: var(--muted);
  font-size: 13px;
}

.requisites-card strong {
  color: var(--steel);
  line-height: 1.3;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.nearby-link {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(13, 92, 82, 0.14);
  border-radius: var(--radius);
  background: var(--panel);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(23, 27, 26, 0.06);
}

.nearby-link span {
  color: var(--green-2);
  font-weight: 850;
  line-height: 1.2;
}

.nearby-link small {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  min-height: 238px;
  padding: 22px;
  border: 1px solid rgba(13, 92, 82, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 34px rgba(23, 27, 26, 0.08);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 850;
}

.repair-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section-actions {
  margin-top: 24px;
}

.reason-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reason-grid span,
.chips span {
  background: #eef7f4;
  border-color: rgba(13, 92, 82, 0.16);
  color: var(--green-2);
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(23, 27, 26, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(23, 27, 26, 0.06);
}

.price-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(23, 27, 26, 0.08);
}

.price-table th {
  color: var(--green-2);
  background: #f5efe5;
  font-size: 13px;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:nth-child(2) {
  white-space: nowrap;
  font-weight: 850;
  color: var(--brick);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  padding: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.case-card h3,
.case-card p {
  padding-inline: 18px;
}

.case-facts {
  display: grid;
  gap: 8px;
  padding: 0 18px;
  margin: 16px 0 0;
}

.case-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.case-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  color: #fff;
  font-weight: 760;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  background: #000;
}

.before-after__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-card,
.notice,
.geo-panel,
.contact-list {
  border: 1px solid rgba(23, 27, 26, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.form-card {
  padding: 24px;
}

.notice,
.geo-panel,
.contact-list {
  padding: 26px;
}

.notice--warning {
  border-color: rgba(159, 76, 53, 0.26);
  background: #fff3ea;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-head,
.form-wide {
  grid-column: 1 / -1;
}

.form-head h3 {
  font-size: 24px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cec3b2;
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.file-field small {
  color: var(--muted);
  font-weight: 500;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-status {
  margin: 0;
  min-height: 22px;
  font-size: 14px;
}

.form-status.is-error {
  color: #9f2f2a;
}

.form-status.is-success {
  color: var(--green);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.is-hidden {
  display: none !important;
}

.page-hero {
  padding: 86px 0 64px;
  background: linear-gradient(180deg, #fffdf8, #efe3d4);
}

.page-hero--urgent {
  color: #fff;
  background: linear-gradient(135deg, var(--green-2), #4b271f);
}

.page-hero--urgent p {
  color: rgba(255, 255, 255, 0.82);
}

.service-hero {
  padding: 80px 0 70px;
  background: var(--bg-plain);
}

.service-hero__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #ddd;
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid rgba(23, 27, 26, 0.08);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(23, 27, 26, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-list details p {
  padding: 0 20px 18px;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.link-cloud a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(13, 92, 82, 0.16);
  border-radius: 999px;
  background: #eef7f4;
  color: var(--green-2);
  font-weight: 760;
  text-decoration: none;
}

.link-cloud--large a {
  min-height: 42px;
}

.geo-link-group {
  margin: 22px 0 28px;
}

.geo-link-group h3 {
  color: var(--dark);
  font-size: 18px;
  margin: 0 0 12px;
}

.legal h2 {
  margin-top: 32px;
  font-size: 26px;
}

.legal ul {
  padding-left: 22px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.sitemap-grid a,
.site-footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.site-footer {
  padding: 62px 0 92px;
  color: #f7f2ea;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}

.brand--footer .brand__mark {
  background: #f1ddbd;
  color: #24302f;
}

.brand--footer .brand__logo {
  width: min(224px, 64vw);
  max-height: 60px;
}

.site-footer p,
.site-footer small,
.site-footer .footer-meta {
  color: rgba(247, 242, 234, 0.72);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 15px;
  color: #f1cf8a;
  text-transform: uppercase;
}

.footer-meta {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
}

.footer-requisites {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  color: rgba(247, 242, 234, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 242, 234, 0.62);
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 11, 0.64);
}

.modal__panel {
  position: relative;
  width: min(94vw, 720px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--bg-plain);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #efe3d4;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 220;
  transform: translateX(-50%);
  max-width: min(92vw, 460px);
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .phone-link {
    display: none;
  }

  .hero {
    min-height: 590px;
    background-image:
      linear-gradient(180deg, rgba(6, 18, 17, 0.84) 0%, rgba(6, 18, 17, 0.64) 62%, rgba(6, 18, 17, 0.36) 100%),
      var(--hero-image);
  }

  .hero h1,
  .page-hero h1,
  .service-hero h1 {
    font-size: 42px;
  }

  .split,
  .split--tight,
  .cards,
  .case-grid,
  .intent-grid,
  .offer-grid,
  .proof-strip,
  .nearby-grid,
  .process-grid,
  .repair-list,
  .footer-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 62px;
  }

  .container,
  .narrow {
    width: min(100% - 24px, var(--container));
  }

  .header__inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__logo {
    width: min(190px, 52vw);
    max-height: 48px;
  }

  .brand small {
    display: none;
  }

  .header-photo {
    min-height: 38px;
    padding: 9px 12px;
  }

  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding: 78px 0 58px;
  }

  .hero h1,
  .page-hero h1,
  .service-hero h1 {
    font-size: 34px;
  }

  .hero__lead,
  .page-hero p,
  .service-hero p,
  .section-head p {
    font-size: 16px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 26px;
    line-height: 1.14;
    text-wrap: pretty;
  }

  .actions,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .actions .btn,
  .lead-form .btn {
    width: 100%;
  }

  .form-card,
  .notice,
  .geo-panel,
  .contact-list,
  .card {
    padding: 18px;
  }

  .table-wrap {
    overflow-x: visible;
  }

  .price-table {
    min-width: 0;
    table-layout: fixed;
  }

  .price-table th,
  .price-table td {
    padding: 12px 10px;
    font-size: 14px;
  }

  .price-table th:nth-child(2),
  .price-table td:nth-child(2) {
    width: 92px;
  }

  .modal__panel {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    padding: 18px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(23, 27, 26, 0.12);
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a,
  .mobile-cta button {
    min-height: 58px;
    display: grid;
    place-items: center;
    border: 0;
    border-right: 1px solid rgba(23, 27, 26, 0.08);
    background: transparent;
    color: var(--green-2);
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-cta button {
    color: #fff;
    background: var(--green);
  }
}
