:root {
  --blue: #0d5f9f;
  --blue-dark: #075991;
  --blue-soft: #1f6daa;
  --red: #bc2639;
  --text: #2b2b2b;
  --ink: #242424;
  --muted: #777;
  --line: #d9d9d9;
  --page: #ffffff;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 22px;
  --fs-2xl: 26px;
  --fs-3xl: 34px;
  --fs-section-title: var(--fs-3xl);
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.12;
  --lh-normal: 1.28;
  --space-section-y: 72px;
  --space-section-y-lg: 86px;
  --space-title-gap: 28px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: #fff;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 24px;
}

main.wrap::before,
main.wrap::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 704px;
  z-index: -10;
  pointer-events: none;
  background: url("../images/common/pattern.svg") center / contain no-repeat;
}

main.wrap::before {
  top: -150px;
  left: -200px;
}

main.wrap::after {
  top: 230px;
  right: -220px;
}

.topbar {
  position: relative;
  z-index: 10;
  height: 54px;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #dcdcdc;
  background: rgba(255,255,255,.94);
  box-shadow: 0 1px 5px rgba(0,0,0,.11);
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

main.wrap {
  isolation: isolate;
}

.topbar .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: 2px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.menu-toggle {
  display: none;
}

.menu-toggle-text::before {
  content: "Menu";
}

html[lang="lv"] .menu-toggle-text::before,
html[lang="ru"] .menu-toggle-text::before {
  content: attr(data-menu-text);
}

.nav a,
.langs a {
  color: #222;
  text-decoration: none;
}

.nav a:hover,
.langs a:hover {
  color: var(--blue);
}

.langs a[aria-current="page"] {
  font-weight: var(--fw-semibold);
}

.langs {
  display: flex;
  gap: 9px;
  margin-right: 2px;
  color: #222;
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
}

.contact-row {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 29px 0 24px;
}

.contact-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  width: 156px;
}

.logo-image {
  display: block;
  width: 156px;
  height: auto;
}

.contact {
  width: fit-content;
  min-width: 0;
}

.contact span {
  display: block;
  color: #7b7b7b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.contact strong {
  display: block;
  margin-top: 1px;
  color: var(--ink);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 468px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.14), rgba(0,0,0,.02)),
    #cfd7df;
}

.truck-art {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.message-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 468px;
  padding: 70px 24px 70px 24px;
  background: var(--blue);
  color: #fff;
}

.blue-pattern {
  position: absolute;
  inset: -60px -34px -59px -8px;
  width: calc(100% + 42px);
  height: calc(100% + 119px);
  pointer-events: none;
}

.message {
  position: relative;
  max-width: 470px;
}

.eyebrow {
  margin-bottom: 26px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: .2px;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(44px, 4.3vw, 58px);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: 0;
}

h1 strong {
  display: block;
  font-weight: 800;
}

.hero-line {
  display: block;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal .55s cubic-bezier(.22, 1, .36, 1) var(--hero-delay, 0s) forwards;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message p {
  margin: 0;
  max-width: 515px;
  color: rgba(255,255,255,.93);
  font-size: var(--fs-md);
  line-height: var(--lh-tight);
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 24px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.card {
  min-height: 188px;
  padding: 24px 25px 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  box-shadow: 0 2px 4px rgba(0,0,0,.13);
}

.card h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.card p {
  margin: 0;
  max-width: 610px;
  color: #4b4b4b;
  font-size: var(--fs-md);
  line-height: 1.18;
}

.services-toggle {
  appearance: none;
  padding: 0;
  border: 0;
  background: none;
  color: var(--red);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}

.service-list {
  display: block;
  max-height: 0;
  margin-top: 16px;
  padding: 0;
  background: #e3e3e3;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.22, 1, .36, 1);
}

.service-item + .service-item {
  margin-top: 0;
}

.service-item {
  padding: 10px;
}

.service-item.is-open {
  padding: 10px;
  background: color(srgb 0.825 0.825 0.825);
}

.service-heading {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #424242;
  font: inherit;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
  text-align: left;
  cursor: pointer;
}

.chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid #7c7c7c;
  border-bottom: 2px solid #7c7c7c;
  transform: rotate(-45deg);
  transition: transform .18s ease;
}

.service-item.is-open .chevron {
  transform: rotate(45deg);
}

.service-item.is-open .service-heading {
  text-decoration: none;
}

.service-copy {
  max-height: 0;
  margin: 0 0 0 20px;
  color: #5d5d5d;
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  overflow: hidden;
  transition:
    max-height .28s cubic-bezier(.22, 1, .36, 1),
    margin-top .2s ease;
}

.service-item.is-open .service-copy {
  max-height: 360px;
  margin-top: 6px;
}

.coverage {
  position: relative;
  width: 100vw;
  min-height: 530px;
  margin: 28px 0 72px 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background: #f7f7f7;
}

.coverage-map {
  position: absolute;
  top: -34px;
  left: calc(50% - 545px);
  width: 920px;
  height: 620px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.countries-card {
  position: absolute;
  top: 40px;
  right: max(16px, calc((100vw - 1200px) / 2));
  width: 350px;
  max-height: 430px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9d9d9;
  background: rgba(255,255,255,.96);
  box-shadow: 0 3px 4px rgba(0,0,0,.15);
}

.countries-head {
  padding: 13px 16px 14px;
  border-bottom: 1px solid #d9d9d9;
}

.countries-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  color: #2a55b9;
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
}

.globe-icon {
  width: 15px;
  height: 15px;
  color: var(--red);
}

.countries-head p {
  margin: 0;
  color: #333;
  font-size: var(--fs-xs);
  font-style: italic;
  line-height: 1.35;
}

.countries-list {
  margin: 0;
  padding: 7px 18px 7px;
  overflow-y: auto;
  list-style: none;
  color: #444;
  font-size: var(--fs-md);
  line-height: 2;
}

.statement {
  position: relative;
  display: grid;
  grid-template-columns: 194px 1fr;
  gap: 24px;
  width: min(700px, 100%);
  margin: 0 auto 73px;
  padding: 55px 0 0;
}

.statement::before {
  content: "”";
  position: absolute;
  top: 10px;
  left: 625px;
  color: rgba(0,0,0,.18);
  font-size: 130px;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

.statement-photo {
  width: 194px;
  height: 256px;
  object-fit: cover;
  object-position: center;
  align-self: start;
}

.statement-body {
  position: relative;
  padding-top: 40px;
}

.statement-copy {
  margin: 0;
  max-width: 458px;
  color: #5d5d5d;
  font-size: var(--fs-xl);
  line-height: var(--lh-normal);
}

.statement-person {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  color: #5d5d5d;
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
}

.statement-person strong {
  color: var(--ink);
  font-weight: var(--fw-bold);
}

.statement-person span {
  padding-left: 16px;
  border-left: 1px solid #cfcfcf;
  font-weight: var(--fw-semibold);
}

.documents {
  width: 100vw;
  margin: 0 0 0 50%;
  padding: var(--space-section-y-lg) 0;
  transform: translateX(-50%);
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background: #f7f7f7;
}

.documents h2 {
  margin: 0 0 var(--space-title-gap);
  color: var(--ink);
  font-size: var(--fs-section-title);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-align: center;
}

.documents-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 310px));
  justify-content: center;
  gap: 24px;
  width: min(660px, calc(100% - 32px));
  margin: 0 auto;
}

.document-card {
  position: relative;
  aspect-ratio: 310 / 440;
  overflow: hidden;
  background: #ece7e2;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
}


.document-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.team {
  width: min(937px, calc(100% - 32px));
  margin: 0 auto var(--space-section-y);
  padding-top: var(--space-section-y);
}

.team h2 {
  margin: 0 0 var(--space-title-gap);
  color: var(--ink);
  font-size: var(--fs-section-title);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 34px 18px;
}

.team-member {
  width: 300px;
}

.team-photo {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  background:
    linear-gradient(rgba(255,255,255,.76), rgba(255,255,255,.76)),
    url("../images/common/pattern.svg") center / 82% auto no-repeat,
    linear-gradient(180deg, #f4f4f4, #ececec);
}

.team-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 96px;
  height: 188px;
  border-radius: 48px 48px 8px 8px;
  background: linear-gradient(180deg, #d6dce4, #8a96a6);
  transform: translateX(-50%);
}

.team-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #c8a38b;
  transform: translateX(-50%);
}

.team-member h3 {
  margin: 10px 0 1px;
  color: #666;
  font-size: 20px;
  font-weight: var(--fw-semibold);
  line-height: 1.1;
}

.team-role,
.team-phone {
  margin: 0;
  color: #666;
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1.25;
  text-transform: uppercase;
}

.team-phone {
  font-size: 14px;
  font-weight: var(--fw-semibold);
}

.team-email {
  display: block;
  margin-top: 1px;
  color: var(--red);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  text-transform: uppercase;
}

.gallery {
  width: 100vw;
  margin: 0 0 0 50%;
  padding: var(--space-section-y) 0;
  transform: translateX(-50%);
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background: #f7f7f7;
}

.gallery h2 {
  margin: 0 0 var(--space-title-gap);
  color: var(--ink);
  font-size: var(--fs-section-title);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-align: center;
}

.gallery-stage {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
}

.gallery-stage::before,
.gallery-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 120px;
  pointer-events: none;
}

.gallery-stage::before {
  left: 0;
  background: linear-gradient(90deg, #f7f7f7, rgba(247,247,247,0));
}

.gallery-stage::after {
  right: 0;
  background: linear-gradient(270deg, #f7f7f7, rgba(247,247,247,0));
}

.gallery-track {
  display: flex;
  gap: 16px;
  transition: transform .35s ease;
  will-change: transform;
}

.gallery-item {
  flex: 0 0 calc((100% - 48px) / 4);
  height: 230px;
  overflow: hidden;
  background: #d7d7d7;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.1);
  color: #d8d8d8;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .18s ease, opacity .18s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: rgba(0,0,0,.16);
}

.gallery-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.gallery-arrow.prev {
  left: 14px;
}

.gallery-arrow.prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.gallery-arrow.next {
  right: 14px;
}

.gallery-arrow.next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(90,78,55,.7);
  transform: translateX(-50%);
}

.gallery-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.gallery-dots button.is-active {
  background: #fff;
}

.contacts {
  position: relative;
  width: min(390px, calc(100% - 32px));
  margin: 0 auto;
  padding: var(--space-section-y) 0;
}

.contacts::before {
  content: "";
  position: absolute;
  top: 0;
  right: 150px;
  bottom: 0;
  width: 520px;
  opacity: .55;
  pointer-events: none;
  background: url("../images/common/pattern.svg") center / contain no-repeat;
}

.contacts h2 {
  position: relative;
  margin: 0 0 var(--space-title-gap);
  color: var(--ink);
  font-size: var(--fs-section-title);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-align: center;
}

.contacts-table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font-size: var(--fs-base);
  line-height: var(--lh-tight);
}

.contacts-table tr {
  border-top: 1px solid #cfd5dc;
  border-bottom: 1px solid #cfd5dc;
}

.contacts-table th,
.contacts-table td {
  padding: 7px 8px;
  text-align: left;
  vertical-align: top;
}

.contacts-table th {
  width: 142px;
  font-weight: var(--fw-regular);
}

.contacts-table td {
  font-weight: var(--fw-extrabold);
}

.contacts-table a {
  color: var(--red);
  text-decoration: underline;
}

.map-embed {
  position: relative;
  width: 100vw;
  height: 430px;
  margin: 0 0 0 50%;
  transform: translateX(-50%);
  border-top: 1px solid #d8d8d8;
  overflow: hidden;
  background: #e8eee9;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.feedback-link {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid color(srgb 0.1197 0.2903 0.6872);
  transition: transform .18s ease, filter .18s ease;
}

.feedback-link:hover,
.feedback-link:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 18px rgba(13, 95, 159, .22));
}

.feedback-link:focus-visible {
  outline: 3px solid rgba(13, 95, 159, .35);
  outline-offset: 4px;
}

.feedback-link img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .contact-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .contact-group {
    flex-wrap: wrap;
  }

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

  .photo-panel,
  .message-panel {
    min-height: 360px;
  }

  .coverage {
    min-height: 690px;
  }

  .coverage-map {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 390px;
  }

  .countries-card {
    top: auto;
    right: 16px;
    bottom: 24px;
    left: 16px;
    width: auto;
    max-height: 330px;
  }

  .statement {
    width: min(700px, calc(100% - 32px));
  }

  .documents-stage {
    width: min(310px, calc(100% - 32px));
  }

  .team-member {
    width: 260px;
  }

  .gallery-stage {
    width: min(560px, calc(100% - 32px));
  }

  .gallery-item {
    flex-basis: calc((100% - 16px) / 2);
    height: 210px;
  }

}

@media (max-width: 720px) {
  main.wrap::after {
    display: none;
  }

  .topbar {
    height: 74px;
  }

  .topbar .wrap {
    align-items: center;
    padding: 0;
  }

  .topbar.is-open {
    height: auto;
    border-bottom: 1px solid #dcdcdc;
  }

  .topbar.is-open .wrap {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 20px 0 21px;
  }

  .nav {
    display: none;
  }

  .topbar.is-open .nav {
    order: 3;
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    gap: 0;
    margin: 29px 0 0;
  }

  .topbar.is-open .nav a {
    display: block;
    padding: 17px 0;
    color: #333;
    font-size: 18px;
    font-weight: var(--fw-semibold);
    line-height: 1.2;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 106px;
    height: 43px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: #ededed;
    color: #111;
    font: inherit;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
  }

  .menu-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .menu-icon::before {
    top: -6px;
  }

  .menu-icon::after {
    top: 6px;
  }

  .topbar.is-open .menu-toggle-text::before {
    content: "Close";
  }

  html[lang="lv"] .topbar.is-open .menu-toggle-text::before,
  html[lang="ru"] .topbar.is-open .menu-toggle-text::before {
    content: attr(data-close-text);
  }

  .topbar.is-open .menu-icon {
    background: transparent;
  }

  .topbar.is-open .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .topbar.is-open .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .langs {
    gap: 10px;
    flex-shrink: 0;
    margin-right: 0;
    font-size: 18px;
    line-height: 1;
  }

  .contact-row {
    display: flex;
    flex-direction: column;
    gap: 34px;
    min-height: 354px;
    padding: 31px 0 43px;
    text-align: center;
  }

  .logo {
    justify-content: center;
    width: auto;
  }

  .logo-image {
    width: 300px;
    max-width: 80vw;
  }

  .contact-group {
    flex-direction: column;
    gap: 19px;
    align-items: center;
    justify-content: center;
  }

  .contact {
    width: 100%;
  }

  .contact span {
    margin-bottom: 3px;
    font-size: 14px;
    color: #777;
    line-height: 1.1;
  }

  .contact strong {
    font-size: 21px;
    line-height: 1.1;
  }

  .message-panel {
    padding: 48px 24px;
  }

  .card h2 {
    font-size: var(--fs-2xl);
  }

  .service-copy {
    margin-left: 24px;
  }

  .coverage {
    min-height: 610px;
  }

  .countries-list {
    font-size: var(--fs-md);
    line-height: 1.85;
  }

  .statement {
    grid-template-columns: 120px 1fr;
    gap: 18px;
    padding-top: 38px;
  }

  .statement::before {
    top: 8px;
    right: 8px;
    left: auto;
    font-size: 92px;
  }

  .statement-photo {
    width: 120px;
    height: 158px;
  }

  .statement-body {
    padding-top: 8px;
  }

  .statement-copy {
    font-size: var(--fs-lg);
  }

  .statement-person {
    display: block;
    font-size: var(--fs-lg);
  }

  .statement-person span {
    display: block;
    margin-top: 8px;
    padding-left: 0;
    border-left: 0;
  }

  .documents {
    padding: 60px 0 64px;
  }

  .documents-stage {
    width: min(310px, calc(100% - 48px));
  }

  .team {
    padding-top: 46px;
  }

  .gallery {
    padding: 56px 0 48px;
  }

  .gallery-stage {
    width: min(560px, calc(100% - 24px));
  }

  .gallery-stage::before,
  .gallery-stage::after {
    display: none;
  }

  .gallery-item {
    flex-basis: 100%;
    height: clamp(250px, 58vw, 340px);
  }

  .contacts-table {
    font-size: var(--fs-sm);
  }

  .contacts-table th {
    width: 118px;
  }

  .map-embed {
    height: 360px;
  }
}
