:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --ink: #101620;
  --ink-2: #273244;
  --muted: #667184;
  --line: #dce5ee;
  --red: #d93632;
  --red-2: #b92a27;
  --blue: #1267a4;
  --blue-2: #0f4f7c;
  --blue-soft: #e6f1f8;
  --green: #667d63;
  --shadow: 0 22px 60px rgba(16,22,32,.11);
  --shadow-sm: 0 10px 28px rgba(16,22,32,.08);
  --radius: 12px;
  --font: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-strong: "Manrope", "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --wrap: 1180px;
  --pad: 24px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(246,248,251,.96) 560px, #fff 100%),
    radial-gradient(780px 340px at 82% 0%, rgba(18,103,164,.12), transparent 70%);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: var(--font-strong);
  letter-spacing: 0;
  text-wrap: balance;
}
h1 {
  max-width: 14ch;
  font-size: clamp(44px, 5.8vw, 74px);
  font-weight: 900;
  line-height: .96;
}
h2 {
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 900;
  line-height: 1.06;
}
h3 {
  font-size: 21px;
  font-weight: 850;
  line-height: 1.18;
}

.wrap {
  width: min(100%, var(--wrap));
  margin-inline: auto;
  padding-inline: var(--pad);
}

section[id] { scroll-margin-top: 92px; }
main#top { scroll-margin-top: 118px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(160%);
}
.top-line {
  color: #dce5ef;
  background: #172235;
}
.top-line__inner {
  min-height: 34px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}
.top-line a:hover { color: #fff; }
.header-grid {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.brand,
.footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.brand img,
.footer-brand img {
  padding: 3px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.brand strong,
.footer-brand strong {
  display: block;
  font-family: var(--font-strong);
  font-weight: 900;
  line-height: 1;
}
.brand small,
.footer-brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}
.nav {
  justify-self: end;
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}
.nav a:hover { color: var(--red); }
.header-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(217,54,50,.18);
  font-family: var(--font-strong);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.header-phone:hover { background: var(--red-2); }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: var(--radius);
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-family: var(--font-strong);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0) scale(.99); }
.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 26px rgba(217,54,50,.18);
}
.button-primary:hover { background: var(--red-2); }
.button-secondary {
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
}
.button-secondary:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  padding-block: clamp(44px, 6.4vw, 78px) 38px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}
.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 11px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(18,103,164,.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}
.lead {
  max-width: 46ch;
  margin-top: 22px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-showcase {
  position: relative;
}
.hero-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220,229,238,.95);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -28px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.hero-badge img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-strong);
  font-size: 18px;
  font-weight: 900;
}
.hero-badge span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.stats { padding-block: 44px 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-sm);
  gap: 1px;
}
.stats-grid div {
  min-height: 116px;
  padding: 22px;
  background: #fff;
}
.stats-grid strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-strong);
  font-size: 31px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stats-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.section { padding-block: clamp(58px, 7vw, 96px); }
.section-title {
  max-width: 720px;
  margin-bottom: 34px;
}
.section-title--center {
  text-align: center;
  margin-inline: auto;
}
.section-title p,
.selection-copy p,
.review-heading p,
.contact-copy p {
  max-width: 62ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.section-title--center p { margin-inline: auto; }

.catalog-section {
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(230,241,248,.52));
}
.catalog-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(2, minmax(0, .91fr));
  gap: 18px;
}
.category-card {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18,103,164,.28);
}
.category-card img {
  width: auto;
  max-height: 76px;
  margin-bottom: auto;
  object-fit: contain;
}
.category-card h3 { margin-top: 18px; }
.category-card p,
.shop-card p,
.route-map__content p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.category-card--main {
  grid-row: span 2;
  min-height: 446px;
  justify-content: space-between;
  color: #fff;
  background:
    radial-gradient(420px 260px at 100% 0%, rgba(255,255,255,.28), transparent 66%),
    linear-gradient(135deg, #172235 0%, #1267a4 100%);
}
.category-card--main img {
  width: 96px;
  height: 96px;
  padding: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
}
.category-card--main span,
.category-card--text span {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}
.category-card--main span {
  color: #fff;
  background: rgba(255,255,255,.14);
}
.category-card--main h3 {
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
}
.category-card--main p {
  max-width: 34ch;
  color: rgba(255,255,255,.78);
}
.category-card--text {
  background:
    radial-gradient(240px 150px at 100% 0%, rgba(217,54,50,.14), transparent 68%),
    #fff;
}

.selection-section {
  background: linear-gradient(180deg, #f8fafc, #fff);
}
.selection-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 34px;
  align-items: stretch;
  padding-block: 36px;
  border-block: 1px solid var(--line);
}
.selection-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.selection-steps div {
  min-height: 156px;
  padding: 22px;
  background: #fff;
}
.selection-steps strong {
  display: block;
  font-family: var(--font-strong);
  font-size: 18px;
  font-weight: 900;
}
.selection-steps span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.shops-section {
  background:
    radial-gradient(740px 320px at 8% 0%, rgba(18,103,164,.09), transparent 70%),
    #f8fafc;
}
.shops-layout {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(380px, 1.07fr);
  gap: 18px;
  align-items: stretch;
}
.shop-list {
  display: grid;
  gap: 18px;
}
.shop-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.shop-card > span {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 15px;
  padding: 7px 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}
.shop-card dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}
.shop-card dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.shop-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.shop-card dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}
.shop-card dd a {
  color: var(--blue);
  font-weight: 900;
}
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.route-map {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.route-map__visual {
  min-height: 306px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(18,103,164,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,103,164,.08) 1px, transparent 1px),
    linear-gradient(135deg, #edf5fb, #ffffff);
  background-size: 44px 44px, 44px 44px, auto;
}
.route-line {
  position: absolute;
  inset: 50px 70px;
  border: 2px dashed rgba(18,103,164,.28);
  border-radius: 999px;
  transform: rotate(-9deg);
}
.route-pin {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(16,22,32,.16);
  font-family: var(--font-strong);
  font-weight: 900;
}
.route-pin--one { left: 30%; top: 31%; }
.route-pin--two { right: 23%; bottom: 24%; background: var(--blue); }
.route-map__content {
  padding: 26px;
  border-top: 1px solid var(--line);
}
.route-map__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(230,241,248,.82), rgba(255,255,255,.94)),
    #f7f9fc;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
}
.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}
.contact-lines a {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
}
.contact-lines a:hover { color: var(--red); }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-form label {
  display: grid;
  gap: 7px;
}
.contact-form label span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.contact-form textarea { min-height: 112px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #7a8495; }
.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217,54,50,.14);
}
.form-msg {
  min-height: 20px;
  font-size: 14px;
  font-weight: 800;
}
.form-msg[data-state="idle"] { color: transparent; }
.form-msg[data-state="error"] { color: var(--red); }
.form-msg[data-state="success"] { color: #0b7d45; }
.form-msg[data-state="pending"] { color: var(--muted); }
.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.footer {
  padding-block: 34px;
  color: #c5cfdd;
  background: #172235;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.footer-brand strong { color: #fff; }
.footer-brand small { color: #c5cfdd; }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer nav a {
  color: #e9eef6;
  font-size: 14px;
  font-weight: 750;
}
.footer p {
  justify-self: end;
  color: #aeb8c8;
  font-size: 13px;
}

:root {
  --max: #1b75d0;
  --max-2: #155fa9;
  --vk: #0077ff;
  --vk-2: #0064d6;
}

.top-line__links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top-icon {
  display: inline-flex;
  padding: 4px;
  color: #aebacd;
  border-radius: 7px;
  transition: color .18s ease, background .18s ease;
}
.top-icon:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.top-icon--max {
  padding-inline: 7px;
  font-family: var(--font-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
}

.messenger-block {
  margin-top: 28px;
  padding: 26px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.messenger-block p {
  max-width: 62ch;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.messenger-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.msgr {
  min-height: 48px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-strong);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.msgr:hover { transform: translateY(-1px); }
.msgr:active { transform: translateY(0) scale(.99); }
.msgr--max {
  background: var(--max);
  box-shadow: 0 12px 24px rgba(27,117,208,.22);
}
.msgr--max:hover { background: var(--max-2); }
.msgr--vk {
  background: var(--vk);
  box-shadow: 0 12px 24px rgba(0,119,255,.22);
}
.msgr--vk:hover { background: var(--vk-2); }
.max-mark {
  min-width: 38px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  padding-inline: 5px;
  color: var(--max);
  background: #fff;
  border-radius: 7px;
  font-family: var(--font-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
}

.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab__toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(217,54,50,.32);
  transition: background .18s ease, transform .18s ease;
}
.fab__toggle:hover {
  background: var(--red-2);
  transform: translateY(-1px);
}
.fab__toggle svg {
  grid-area: 1 / 1;
  transition: opacity .2s ease, transform .2s ease;
}
.fab__icon-close {
  opacity: 0;
  transform: rotate(-45deg) scale(.6);
}
.fab.is-open .fab__icon-chat {
  opacity: 0;
  transform: rotate(45deg) scale(.6);
}
.fab.is-open .fab__icon-close {
  opacity: 1;
  transform: none;
}
.fab__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.fab.is-open .fab__menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.fab__item {
  min-height: 46px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 11px 18px;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(16,22,32,.2);
  font-family: var(--font-strong);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s ease, filter .18s ease;
}
.fab__item:hover {
  transform: translateX(-3px);
  filter: brightness(.94);
}
.fab__item--max { background: var(--max); }
.fab__item--vk { background: var(--vk); }
.fab__item--tel { background: var(--blue); }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .48s ease, transform .48s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .header-grid { grid-template-columns: auto auto auto; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px var(--pad);
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav.is-open {
    display: grid;
    gap: 16px;
  }
  .burger { display: inline-flex; }
}

@media (max-width: 980px) {
  .hero-grid,
  .selection-panel,
  .shops-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  h1 { max-width: 13ch; }
  .hero-showcase { max-width: 720px; }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-card--main {
    grid-column: span 2;
    grid-row: auto;
    min-height: 320px;
  }
  .selection-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer nav { justify-content: flex-start; }
  .footer p { justify-self: start; }
}

@media (max-width: 720px) {
  :root { --pad: 18px; }
  .top-line__inner {
    min-height: 32px;
    font-size: 12px;
  }
  .header-phone { display: none; }
  .hero { padding-top: 38px; }
  .lead { font-size: 17px; }
  .hero-actions .button,
  .shop-actions .button,
  .route-map__actions .button { width: 100%; }
  .hero-badge {
    position: static;
    margin-top: 12px;
    grid-template-columns: 56px 1fr;
  }
  .hero-badge img {
    width: 56px;
    height: 56px;
  }
  .stats-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .category-card--main {
    grid-column: auto;
    min-height: 300px;
  }
  .shop-card dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .route-map__visual { min-height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form,
  .shop-card,
  .route-map__content { padding: 22px; }
}

@media (max-width: 720px) {
  .messenger-row .msgr { flex: 1 1 130px; }
  .fab { right: 16px; bottom: 16px; }
  .fab__toggle { width: 56px; height: 56px; }
  .top-line__links a[href^="mailto"] { display: none; }
}

@media (max-width: 460px) {
  h1 { font-size: 39px; }
  h2 { font-size: 29px; }
  .brand small { display: none; }
  .messenger-block { padding: 22px; }
}
