:root {
  --ink: #202528;
  --muted: #627074;
  --paper: #f6f3ed;
  --panel: #ffffff;
  --line: #e5ded2;
  --accent: #158b8d;
  --accent-dark: #0c5c5e;
  --warm: #b77241;
  --soft: #eaf5f4;
  --shadow: 0 18px 48px rgba(28, 38, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 16px;
}

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

.topbar {
  background: #1d2f30;
  color: #f7fffe;
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: #f7fffe;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(40, 54, 55, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__logo {
  display: grid;
  width: 82px;
  height: 66px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.brand__logo img {
  max-width: 74px;
  max-height: 62px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__name {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
}

.brand__tag {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: #39484b;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.nav a.is-active {
  background: var(--soft);
  color: var(--accent-dark);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-family: inherit;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
  box-shadow: 0 10px 24px rgba(21, 139, 141, 0.22);
}

.button--ghost {
  border-color: rgba(21, 139, 141, 0.28);
  background: #ffffff;
  color: var(--accent-dark);
}

.button--ghost:hover {
  background: var(--soft);
  box-shadow: none;
}

.hero {
  padding: 58px 0 56px;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: stretch;
  gap: 30px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-height: 520px;
}

.eyebrow {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(21, 139, 141, 0.2);
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(40px, 7vw, 82px);
}

h2 {
  font-size: clamp(30px, 4.2vw, 54px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 760px;
  color: #445255;
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero__actions,
.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.fact {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.fact strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.fact span {
  color: var(--muted);
  font-size: 14px;
}

.hero__media {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 8px;
  background: #dce6e3;
  box-shadow: var(--shadow);
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero__note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: #1d2f30;
  color: #ffffff;
}

.hero__note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: 72px 0;
}

.section--white {
  background: #ffffff;
}

.section--soft {
  background: var(--soft);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section__head p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.catalog-card {
  position: relative;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: #14292a;
  color: #ffffff;
}

.catalog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.catalog-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 24, 0.08), rgba(12, 20, 21, 0.84));
  content: "";
}

.catalog-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 22px;
}

.catalog-card:hover img {
  transform: scale(1.04);
}

.catalog-card__badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.split__media {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(32, 37, 40, 0.12);
}

.feature__mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.feature strong {
  display: block;
  margin-bottom: 3px;
}

.feature span {
  color: var(--muted);
}

.page-hero {
  padding: 44px 0;
  background: #ffffff;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 30px;
  align-items: center;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--accent-dark);
}

.page-hero__image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.page-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article {
  padding: 54px 0;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: 42px;
  align-items: start;
}

.article-flow {
  color: #38474a;
  font-size: 17px;
}

.article-flow h2 {
  margin: 32px 0 16px;
  font-size: 30px;
}

.article-flow p {
  margin-bottom: 18px;
}

.side-panel {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.side-panel p {
  color: var(--muted);
}

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

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.gallery-card a {
  display: block;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  background: #eef2f1;
}

.gallery-card__caption {
  min-height: 46px;
  padding: 10px 12px;
  color: #4a585b;
  font-size: 14px;
  font-weight: 700;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin: 0 0 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #425154;
  cursor: pointer;
  font-weight: 800;
  padding: 9px 13px;
  white-space: nowrap;
}

.filter-button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.contact-band {
  padding: 70px 0;
  background: #1d2f30;
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: stretch;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-box {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: #ffffff;
  font-size: 20px;
}

.site-footer {
  padding: 28px 0;
  background: #122223;
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 14, 14, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__dialog {
  width: min(1100px, 100%);
  color: #ffffff;
}

.lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.lightbox__close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

body.has-modal {
  overflow: hidden;
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 14, 14, 0.72);
}

.callback-modal.is-open {
  display: flex;
}

.callback-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.callback-modal__title {
  margin: 16px 0 12px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
}

.callback-modal__dialog p {
  color: var(--muted);
  font-size: 16px;
}

.callback-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.callback-modal__phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0 14px;
}

.callback-modal__note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.noindex-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
}

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

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    justify-content: start;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .button {
    display: none;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .article-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    min-height: 0;
  }

  .side-panel {
    position: static;
  }

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

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

@media (max-width: 720px) {
  .topbar__inner,
  .section__head,
  .footer__inner {
    align-items: start;
    flex-direction: column;
  }

  .topbar__inner {
    padding: 9px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand__tag {
    display: none;
  }

  .hero,
  .section,
  .article,
  .contact-band {
    padding: 42px 0;
  }

  .hero__facts,
  .catalog-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 270px;
  }

  .hero__media img {
    min-height: 300px;
  }

  .hero__note {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }
}

/* Light business-card concept */
:root {
  --ink: #1f252b;
  --muted: #6c747c;
  --paper: #f7f8f6;
  --panel: #ffffff;
  --line: #e3e7e1;
  --accent: #9f6a43;
  --accent-dark: #704426;
  --warm: #2f6f73;
  --soft: #edf3f1;
  --shadow: 0 18px 45px rgba(38, 44, 49, 0.1);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 246, 0.94)),
    radial-gradient(circle at 14% 0%, rgba(159, 106, 67, 0.09), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(47, 111, 115, 0.08), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

.container {
  width: min(1140px, calc(100% - 40px));
}

.topbar {
  border-bottom: 1px solid rgba(31, 37, 43, 0.08);
  background: #fbfcfa;
  color: #4d575f;
}

.topbar a {
  color: #2e5d63;
  font-weight: 700;
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(31, 37, 43, 0.08);
  box-shadow: 0 10px 28px rgba(31, 37, 43, 0.06);
}

.header__inner {
  min-height: 78px;
}

.brand__logo {
  width: 88px;
  height: 58px;
  border-color: rgba(31, 37, 43, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 37, 43, 0.08);
}

.brand__logo img {
  max-width: 78px;
  max-height: 48px;
}

.brand__name {
  color: #252b31;
  font-size: 17px;
  font-weight: 850;
}

.brand__tag {
  color: #738087;
}

.nav {
  gap: 3px;
}

.nav a {
  padding: 8px 10px;
  color: #4f5960;
  font-size: 13px;
  font-weight: 750;
}

.nav a:hover,
.nav a.is-active {
  background: #eef4f2;
  color: #2f6f73;
}

.button {
  min-height: 42px;
  border-radius: 6px;
  background: #2f6f73;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(47, 111, 115, 0.18);
}

.button:hover {
  background: #255b5f;
  box-shadow: 0 14px 28px rgba(47, 111, 115, 0.2);
}

.button--ghost {
  border-color: rgba(47, 111, 115, 0.24);
  background: #ffffff;
  color: #2f6f73;
  box-shadow: none;
}

.button--ghost:hover {
  background: #eef4f2;
}

.hero {
  padding: 50px 0 46px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
}

.hero__grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 480px);
  gap: 34px;
}

.hero__copy {
  min-height: 430px;
  gap: 20px;
  padding: 8px 0;
}

.eyebrow {
  border-color: rgba(159, 106, 67, 0.24);
  background: #fbf3ed;
  color: #704426;
  font-size: 12px;
}

h1 {
  max-width: 780px;
  color: #20262b;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.03;
}

h2 {
  color: #20262b;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
}

h3 {
  color: #20262b;
  font-size: 21px;
}

.lead {
  color: #59636b;
  font-size: clamp(17px, 1.7vw, 20px);
}

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

.fact {
  border-color: rgba(31, 37, 43, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(31, 37, 43, 0.06);
}

.fact strong {
  color: #2f6f73;
  font-size: 21px;
}

.hero__media {
  grid-template-rows: minmax(320px, 1fr) auto;
  border: 1px solid rgba(31, 37, 43, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(31, 37, 43, 0.12);
}

.hero__media img {
  min-height: 360px;
  object-fit: cover;
}

.hero__note {
  background: #ffffff;
  color: #20262b;
  border-top: 1px solid rgba(31, 37, 43, 0.08);
}

.hero__note span {
  color: #717b83;
}

.section {
  padding: 64px 0;
}

.section--white {
  background: rgba(255, 255, 255, 0.86);
}

.section--soft {
  background: #f0f4f1;
}

.section__head {
  align-items: flex-start;
}

.section__head p {
  color: #69737a;
}

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

.catalog-card {
  display: grid;
  grid-template-rows: 214px 1fr;
  min-height: 0;
  border: 1px solid rgba(31, 37, 43, 0.08);
  border-radius: 8px;
  background: #ffffff;
  color: #20262b;
  box-shadow: 0 14px 34px rgba(31, 37, 43, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 115, 0.2);
  box-shadow: 0 20px 40px rgba(31, 37, 43, 0.12);
}

.catalog-card img {
  position: static;
  width: 100%;
  height: 214px;
  border-bottom: 1px solid rgba(31, 37, 43, 0.08);
  object-fit: cover;
}

.catalog-card::after {
  display: none;
}

.catalog-card__body {
  position: static;
  display: block;
  padding: 18px;
}

.catalog-card:hover img {
  transform: none;
}

.catalog-card__badge {
  margin-bottom: 10px;
  background: #eef4f2;
  color: #2f6f73;
}

.catalog-card p {
  color: #69737a;
}

.split {
  gap: 38px;
}

.split__media {
  border: 1px solid rgba(31, 37, 43, 0.08);
  box-shadow: 0 16px 34px rgba(31, 37, 43, 0.09);
}

.feature {
  padding: 14px 0;
  border-color: rgba(31, 37, 43, 0.09);
}

.feature__mark {
  background: #9f6a43;
}

.page-hero {
  padding: 48px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.page-hero__image {
  border: 1px solid rgba(31, 37, 43, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(31, 37, 43, 0.1);
}

.page-hero__image img {
  object-fit: contain;
  background: #ffffff;
}

.article {
  padding: 58px 0;
}

.article-grid {
  grid-template-columns: minmax(0, 760px) minmax(270px, 1fr);
}

.article-flow {
  color: #3d464e;
  font-size: 17px;
}

.article-flow h2 {
  color: #20262b;
}

.side-panel {
  border-color: rgba(31, 37, 43, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(31, 37, 43, 0.08);
}

.gallery {
  gap: 16px;
}

.gallery-card {
  border-color: rgba(31, 37, 43, 0.08);
  box-shadow: 0 12px 28px rgba(31, 37, 43, 0.07);
}

.gallery-card img {
  background: #f4f6f3;
  object-fit: contain;
}

.gallery-card__caption {
  color: #4e5960;
  background: #ffffff;
}

.filter-button {
  border-color: rgba(31, 37, 43, 0.1);
  background: #ffffff;
  color: #4e5960;
}

.filter-button.is-active {
  border-color: #2f6f73;
  background: #2f6f73;
  color: #ffffff;
}

.contact-band {
  padding: 64px 0;
  background: #ffffff;
  color: #20262b;
  border-top: 1px solid rgba(31, 37, 43, 0.08);
}

.contact-grid p {
  color: #69737a;
}

.contact-box {
  border-color: rgba(31, 37, 43, 0.08);
  background: #f7f8f6;
  box-shadow: 0 14px 34px rgba(31, 37, 43, 0.08);
}

.contact-item span {
  color: #7b858d;
}

.contact-item a,
.contact-item strong {
  color: #20262b;
}

.site-footer {
  background: #f0f3ef;
  color: #68727a;
  border-top: 1px solid rgba(31, 37, 43, 0.08);
}

.callback-modal {
  background: rgba(31, 37, 43, 0.46);
}

.callback-modal__dialog {
  border: 1px solid rgba(31, 37, 43, 0.08);
  box-shadow: 0 24px 60px rgba(31, 37, 43, 0.2);
}

@media (max-width: 1020px) {
  .nav {
    border-color: rgba(31, 37, 43, 0.08);
    background: rgba(255, 255, 255, 0.98);
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .article-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    min-height: 0;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .topbar__inner {
    gap: 8px;
  }

  .brand__logo {
    width: 76px;
    height: 52px;
  }

  .brand__logo img {
    max-width: 68px;
    max-height: 42px;
  }

  .hero,
  .section,
  .article,
  .contact-band,
  .page-hero {
    padding: 38px 0;
  }

  .hero__grid {
    gap: 24px;
  }

  .hero__facts,
  .catalog-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-rows: 210px 1fr;
  }

  .catalog-card img {
    height: 210px;
  }

  .hero__media {
    grid-template-rows: auto auto;
  }

  .hero__media img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero__note {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .section-actions {
    align-items: stretch;
  }

  .hero__actions .button,
  .section-actions .button {
    width: 100%;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }
}
