:root {
  color-scheme: light;
  --ink: #18222f;
  --muted: #66717f;
  --paper: #f7f3ec;
  --surface: #ffffff;
  --line: #dcd5ca;
  --brand: #0f6156;
  --brand-dark: #083f39;
  --accent: #c97845;
  --accent-soft: #f1d3bd;
  --blue: #213f63;
  --shadow: 0 24px 80px rgba(22, 31, 43, 0.12);
  --radius: 8px;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 243, 236, 0.94);
  box-shadow: 0 8px 30px rgba(24, 34, 47, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 19px;
  font-weight: 900;
}

.brand-text small {
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.76;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.header-phone {
  opacity: 0.88;
}

.main-nav a:hover,
.header-phone:hover {
  opacity: 1;
}

.header-phone {
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 64px) 48px;
  color: #ffffff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 22, 29, 0.84) 0%, rgba(9, 22, 29, 0.58) 42%, rgba(9, 22, 29, 0.18) 100%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=84") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f6bd86;
}

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

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

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 86px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 12px 34px rgba(15, 97, 86, 0.28);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 52px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 32px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.section {
  padding: 96px clamp(20px, 5vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  padding-top: 10px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  background: var(--surface);
}

.intro .section-heading {
  display: block;
  margin: 0;
}

.intro-copy {
  columns: 2 280px;
  column-gap: 40px;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p {
  margin: 0 0 20px;
}

.services {
  background: #efe7dc;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--surface);
}

.service-number {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 42px;
}

.service-card p {
  margin: 18px 0 28px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--brand);
  font-weight: 900;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  min-height: 620px;
  background: var(--blue);
  color: #ffffff;
}

.feature-media {
  min-height: 420px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  align-self: center;
  padding: clamp(36px, 6vw, 72px);
}

.feature-content .eyebrow {
  color: #f6bd86;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--blue);
  border: 1px solid #f6bd86;
}

.objects {
  background: var(--surface);
}

.objects-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.objects-map-link {
  color: var(--brand);
  font-weight: 900;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.carousel-button:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.carousel-button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  transform: translateX(2px) rotate(45deg);
}

.carousel-button.next::before {
  transform: translateX(-2px) rotate(225deg);
}

.object-track {
  display: grid;
  grid-auto-columns: minmax(290px, 31.5%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) transparent;
}

.object-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  scroll-snap-align: start;
}

.object-image {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
}

.object-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.object-image span {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 97, 86, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.object-content {
  padding: 24px;
}

.object-content h3 {
  font-size: 23px;
}

.object-content p {
  margin: 12px 0 0;
  color: var(--muted);
}

.object-content a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand);
  font-weight: 900;
}

.object-empty {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface);
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  min-height: 280px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--accent);
  font-weight: 900;
}

.process-list h3 {
  margin-top: 42px;
}

.process-list p {
  color: var(--muted);
}

.reviews {
  background: #132c2b;
  color: #ffffff;
}

.reviews .section-heading {
  margin-bottom: 34px;
}

.reviews .eyebrow {
  color: #f6bd86;
}

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

figure {
  min-height: 250px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

figcaption {
  margin-top: 24px;
  color: #f6bd86;
  font-weight: 900;
}

.contact-section {
  padding: 96px clamp(20px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(247, 243, 236, 0.94), rgba(247, 243, 236, 0.84)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(220, 213, 202, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-panel p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-list a {
  color: var(--brand);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-alert.success {
  color: #0f453e;
  background: rgba(15, 97, 86, 0.12);
}

.form-alert.error {
  color: #7b241d;
  background: rgba(167, 66, 53, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 97, 86, 0.14);
  border-color: var(--brand);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #0c171b;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

.object-page {
  background: var(--paper);
}

.object-main {
  padding-top: 106px;
}

.object-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: 64px clamp(20px, 5vw, 64px) 44px;
  background: var(--surface);
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--brand);
  font-weight: 900;
}

.object-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 84px);
}

.object-address {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
}

.object-metro {
  margin: 12px 0 0;
  color: var(--brand);
  font-weight: 900;
}

.object-price-panel {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9f6f0;
  box-shadow: var(--shadow);
}

.object-status {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.object-status.is-active {
  background: var(--brand);
}

.object-status.is-archived {
  background: #a74235;
}

.object-price-panel strong {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.object-price-panel p,
.object-price-panel small {
  margin: 0;
  color: var(--muted);
}

.object-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  padding: 42px clamp(20px, 5vw, 64px) 0;
}

.object-gallery {
  min-width: 0;
}

.object-gallery-main {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.object-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-thumbs {
  display: grid;
  grid-auto-columns: 112px;
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 2px 4px;
  scroll-snap-type: x mandatory;
}

.object-thumbs button {
  height: 76px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  scroll-snap-align: start;
}

.object-thumbs button.is-active {
  border-color: var(--brand);
}

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

.object-gallery-empty {
  display: grid;
  min-height: 420px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface);
}

.object-contact-card,
.object-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.object-contact-card {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  padding: 26px;
}

.object-contact-card h2 {
  font-size: 28px;
}

.object-contact-card p {
  margin: 0;
  color: var(--muted);
}

.object-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 42px clamp(20px, 5vw, 64px);
}

.object-info-card {
  padding: clamp(24px, 4vw, 38px);
}

.object-info-card h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.object-facts {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.object-facts div {
  display: grid;
  grid-template-columns: minmax(140px, 0.85fr) minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.object-facts dt {
  color: var(--muted);
  font-weight: 800;
}

.object-facts dd {
  margin: 0;
  font-weight: 900;
}

.object-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.object-map-section {
  padding: 0 clamp(20px, 5vw, 64px) 96px;
}

.object-map {
  width: 100%;
  height: min(560px, 70vh);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.map-main {
  padding-top: 106px;
}

.map-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: 64px clamp(20px, 5vw, 64px) 42px;
  background: var(--surface);
}

.map-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 7vw, 84px);
}

.map-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.map-summary {
  display: grid;
  gap: 6px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9f6f0;
  box-shadow: var(--shadow);
}

.map-summary strong {
  font-size: 52px;
  line-height: 1;
}

.map-summary span {
  color: var(--muted);
  font-weight: 900;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
  gap: 18px;
  padding: 42px clamp(20px, 5vw, 64px) 96px;
}

.map-list {
  display: grid;
  max-height: 72vh;
  gap: 12px;
  overflow: auto;
  padding-right: 6px;
}

.map-object-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.map-object-card span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-object-card h2 {
  margin-top: 16px;
  font-size: 24px;
}

.map-object-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.map-object-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.map-object-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 900;
}

.agency-map {
  position: sticky;
  top: 112px;
  min-height: 72vh;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.agency-map.is-error::before {
  content: "Не удалось загрузить карту. Попробуйте обновить страницу.";
  display: grid;
  height: 100%;
  min-height: 360px;
  place-items: center;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1120px) {
  .service-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .object-track {
    grid-auto-columns: minmax(280px, 46%);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: auto;
    width: min(260px, calc(100vw - 40px));
    display: none;
    justify-items: start;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(9, 22, 29, 0.78) 0%, rgba(9, 22, 29, 0.68) 58%, rgba(9, 22, 29, 0.4) 100%),
      url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=82") center / cover;
  }

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

  .section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading,
  .intro,
  .feature-band,
  .contact-panel,
  .object-hero,
  .object-layout,
  .object-info-grid,
  .map-hero,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .object-main,
  .map-main {
    padding-top: 86px;
  }

  .object-hero,
  .map-hero {
    padding-top: 42px;
  }

  .object-contact-card,
  .agency-map {
    position: static;
  }

  .map-list {
    max-height: none;
    order: 2;
    padding-right: 0;
  }

  .agency-map {
    min-height: 520px;
  }

  .intro-copy {
    columns: auto;
  }

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

  .objects-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .object-track {
    grid-auto-columns: minmax(270px, 84%);
  }

  .feature-band {
    min-height: auto;
  }

  .feature-content {
    padding: 36px 20px 48px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    font-size: 11px;
  }


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

  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .object-card {
    grid-template-rows: 220px 1fr;
  }

  .contact-panel {
    padding: 22px;
  }

  .object-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .object-thumbs {
    grid-auto-columns: 92px;
  }

  .object-thumbs button {
    height: 64px;
  }
}
