/* БлагоГрад — редизайн главной 2026 */

.bg-2026 {
  /* Типографика */
  --bg-font-heading: "Manrope", system-ui, sans-serif;
  --bg-font-body: "Inter", system-ui, sans-serif;
  --bg-font: var(--bg-font-body);

  /* Палитра БлагоГрад 2026 */
  --bg-accent: #b99272;
  --bg-accent-hover: #a67e5f;
  --bg-beige-light: #ede4db;
  --bg-section: #f7f4f1;
  --bg-text: #1e1e1e;
  --bg-muted: #6f6f6f;
  --bg-border: #ddd6cf;

  /* Алиасы (совместимость со старыми именами переменных) */
  --bg-dark: var(--bg-text);
  --bg-beige: var(--bg-accent);
  --bg-beige-hover: var(--bg-accent-hover);
  --bg-light: var(--bg-section);
  --bg-cream: var(--bg-beige-light);
  --bg-production-btn: var(--bg-accent);
  --bg-production-btn-hover: var(--bg-accent-hover);

  --bg-white: #ffffff;
  --bg-radius: 12px;
  --bg-wrap: 1420px;
  --bg-header-h: 88px;
  font-family: var(--bg-font-body);
  color: var(--bg-text);
  background: var(--bg-white);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.bg-2026 * { box-sizing: border-box; }

.bg-2026 h1,
.bg-2026 h2,
.bg-2026 h3,
.bg-2026 h4,
.bg-2026 h5,
.bg-2026 h6,
.bg-2026 .bg-seg-panel__title,
.bg-2026 .bg-seg-popular__title,
.bg-2026 .bg-seg-sidebar__title,
.bg-2026 .bg-product-hero__title,
.bg-2026 .bg-collection-hero__title {
  font-family: var(--bg-font-heading);
  font-weight: 600;
  color: var(--bg-text);
}

.bg-2026 .bg-page-hero__title,
.bg-2026 .bg-hero__title,
.bg-2026 .bg-catalog-hero__title,
.bg-2026 .bg-collection-hero__title,
.bg-2026 .bg-prj-hero__title,
.bg-2026 .bg-about__title {
  font-family: var(--bg-font-heading);
  font-weight: 600;
  color: #fff;
}

.bg-wrap {
  width: min(100% - 32px, var(--bg-wrap));
  margin-inline: auto;
}

.bg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.bg-btn--primary {
  background: var(--bg-beige);
  color: var(--bg-white);
}
.bg-btn--primary:hover { background: var(--bg-beige-hover); }

.bg-btn--outline {
  background: transparent;
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.85);
}
.bg-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.bg-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bg-text);
  text-decoration: none;
  font-weight: 500;
}
.bg-link-arrow:hover { color: var(--bg-beige-hover); }

/* Header */
.bg-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--bg-header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bg-border);
}

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

.bg-header__logo img { display: block; height: 44px; width: auto; }

.bg-header__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 22px;
}
.bg-header__nav > a,
.bg-header__nav-link {
  color: var(--bg-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.bg-header__nav > a:hover,
.bg-header__nav-link:hover { color: var(--bg-beige-hover); }

.bg-header__nav-item {
  position: relative;
}

.bg-header__nav-item::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 16px;
}

.bg-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bg-header__nav-chevron {
  margin-top: 1px;
  transition: transform 0.2s;
}

.bg-header__nav-item:hover .bg-header__nav-chevron,
.bg-header__nav-item:focus-within .bg-header__nav-chevron {
  transform: rotate(180deg);
}

.bg-header__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 8px;
  background: var(--bg-white);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 120;
}

.bg-header__nav-item:hover .bg-header__dropdown,
.bg-header__nav-item:focus-within .bg-header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bg-header__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--bg-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.bg-header__dropdown a:hover {
  background: var(--bg-section);
  color: var(--bg-beige-hover);
}

.bg-header__nav-item.is-active > .bg-header__nav-link,
.bg-header__dropdown a.is-active {
  color: var(--bg-beige-hover);
  font-weight: 600;
}

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

.bg-header__phone {
  color: var(--bg-text);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.bg-header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.bg-header__burger span {
  display: block;
  height: 2px;
  background: var(--bg-dark);
  border-radius: 2px;
}

.bg-mobile-menu {
  position: fixed;
  top: var(--bg-header-h);
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 20px;
  border-bottom: 1px solid var(--bg-border);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bg-mobile-menu[hidden] { display: none !important; }
.bg-mobile-menu a { text-decoration: none; color: var(--bg-text); font-weight: 500; }

.bg-mobile-menu__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bg-mobile-menu__parent {
  font-weight: 600;
}

.bg-mobile-menu__sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 2px solid var(--bg-border);
}

.bg-mobile-menu__sub a {
  font-size: 14px;
  color: var(--bg-muted);
}

.bg-mobile-menu__group.is-active .bg-mobile-menu__parent,
.bg-mobile-menu a.is-active {
  color: var(--bg-beige-hover);
}

.bg-main {
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
}

/* Hero — на всю ширину и высоту экрана, шапка поверх баннера */
.bg-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  min-height: 100vh;
  min-height: 100svh;
}

.bg-hero__swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  touch-action: pan-y pinch-zoom;
}

.bg-hero__swiper.swiper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bg-hero__slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.bg-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.15) 0%, rgba(8, 10, 12, 0.35) 45%, rgba(8, 10, 12, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 10, 12, 0.55) 0%, rgba(8, 10, 12, 0.18) 48%, rgba(8, 10, 12, 0.05) 100%);
}

.bg-hero .bg-wrap.bg-hero__layout {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  z-index: 2;
  width: min(calc(100% - 32px), var(--bg-wrap));
  max-width: var(--bg-wrap);
  margin: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px 56px;
  padding-top: calc(var(--bg-header-h) + 24px);
  padding-bottom: 100px;
  padding-left: 0;
  padding-right: 0;
  pointer-events: none;
}

.bg-hero__layout a,
.bg-hero__layout button {
  pointer-events: auto;
}

.bg-hero__content {
  position: relative;
  min-height: 280px;
  color: #fff;
  align-self: end;
  padding-bottom: 8px;
}

.bg-hero__text-panel {
  display: none;
  max-width: 640px;
}

.bg-hero__text-panel.is-active {
  display: block;
}

.bg-hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.bg-hero__subtitle {
  margin: 0 0 32px;
  max-width: 520px;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.bg-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}

.bg-hero__btn-video {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.25s;
}

.bg-hero__btn-video:hover {
  opacity: 0.85;
}

.bg-hero__play {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}

.bg-hero__play::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 15px;
  border: 9px solid transparent;
  border-left: 14px solid #fff;
}

.bg-hero__stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  align-self: center;
  padding-right: 8px;
  text-align: right;
}

.bg-hero__stat strong {
  display: block;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.bg-hero__stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
  max-width: 200px;
}

.bg-hero .bg-wrap.bg-hero__nav {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 36px;
  z-index: 5;
  width: min(calc(100% - 32px), var(--bg-wrap));
  max-width: var(--bg-wrap);
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  pointer-events: none;
}

.bg-hero__fraction {
  min-width: 42px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.bg-hero__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bg-hero__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: width 0.25s, background 0.25s;
}

.bg-hero__pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: #fff;
}

.bg-hero__arrows {
  display: flex;
  gap: 10px;
}

.bg-hero__fraction,
.bg-hero__pagination,
.bg-hero__arrows,
.bg-hero__arrow {
  pointer-events: auto;
}

.bg-hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
}

.bg-hero__arrow--prev::after,
.bg-hero__arrow--next::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin: 15px auto;
}

.bg-hero__arrow--prev::after {
  transform: rotate(-135deg);
}

.bg-hero__arrow--next::after {
  transform: rotate(45deg);
}

/* Sections */
.bg-section { padding: 72px 0; }
.bg-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}
.bg-section__head h2,
.bg-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
}

/* Produce / каталог — bento в ширине контента */
.bg-produce {
  padding-bottom: 88px;
}

.bg-produce__head {
  margin-bottom: 40px;
}

.bg-produce__mosaic {
  width: 100%;
  max-width: 100%;
}

.bg-produce__mosaic-top {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  align-items: stretch;
}

.bg-produce__mosaic-left {
  flex: 0 0 65%;
  max-width: 65%;
}

.bg-produce__row {
  display: flex;
  justify-content: space-between;
  gap: 4%;
  margin-bottom: 38px;
}

.bg-produce__card {
  position: relative;
  background: #f4f4f4;
  border-radius: 32px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.bg-produce__card:hover {
  box-shadow: 4px 5px 30px rgba(0, 0, 0, 0.1);
}

.bg-produce__card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.bg-produce__label {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 24px 24px 0;
  padding: 10px 24px;
  background: #fff;
  border-radius: 8px;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--bg-text);
}

.bg-produce__label span {
  display: block;
}

.bg-produce__label--bottom {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  max-width: calc(100% - 48px);
}

.bg-produce__photo {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  max-height: 72%;
  margin: 8px auto 0;
  object-fit: contain;
  pointer-events: none;
}

.bg-produce__row .bg-produce__card {
  flex: 0 0 48%;
  max-width: 48%;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.bg-produce__row .bg-produce__photo {
  margin-top: auto;
  margin-bottom: 12px;
}

.bg-produce__card--wide {
  min-height: 270px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bg-produce__card--wide .bg-produce__photo {
  margin-left: auto;
  margin-right: 24px;
  max-height: 220px;
}

.bg-produce__card--tall {
  flex: 0 0 32%;
  max-width: 32%;
  min-height: 580px;
  display: block;
}

.bg-produce__card--tall .bg-produce__photo {
  max-height: 75%;
  margin: 0 auto;
}

.bg-produce__mosaic-bottom {
  margin-top: 40px;
  display: flex;
  gap: 2.5%;
  width: 100%;
}

.bg-produce__card--bottom {
  flex: 0 0 48.5%;
  max-width: 48.5%;
  min-height: 210px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 24px;
}

.bg-produce__card--bottom .bg-produce__photo {
  height: 210px;
  width: auto;
  max-width: 62%;
  margin: 24px 24px 0 auto;
  object-fit: contain;
}

/* Video projects — как на старой главной */
.bg-video-projects {
  background: #fff;
}

.bg-video-projects__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bg-text);
}

.bg-video-projects__lead {
  margin: 0;
  max-width: 640px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--bg-text);
}

.bg-video-projects__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.bg-video-projects__item {
  position: relative;
  flex: 1 1 320px;
  max-width: 406px;
  min-height: 507px;
  border-radius: 64px;
  overflow: hidden;
  background-color: #e8e8e8;
  background-size: cover;
  background-position: center;
}

.bg-video-projects__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.3s ease;
  pointer-events: none;
}

.bg-video-projects__item:hover .bg-video-projects__overlay {
  background: rgba(0, 0, 0, 0.4);
}

.bg-video-projects__link {
  position: absolute;
  inset: 0;
  z-index: 6;
}

.bg-video-projects__play {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.bg-video-projects__play a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bg-video-projects__play-icon {
  max-width: 42px;
  width: 42px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.bg-video-projects__item:hover .bg-video-projects__play-icon {
  opacity: 1;
}

.bg-video-projects__label {
  position: absolute;
  left: 0;
  bottom: 24px;
  z-index: 6;
  width: 100%;
  margin: 0;
  padding: 0 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
}

/* Stats */
.bg-stats { text-align: center; }
.bg-stats__title { margin-bottom: 40px; }
.bg-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.bg-stats__item strong {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin: 12px 0 8px;
}
.bg-stats__item span {
  font-size: 14px;
  color: var(--bg-muted);
}
.bg-stats__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.5;
}

/* Production — блок с бежевой подложкой */
.bg-production__band {
  background: var(--bg-cream);
  padding: 72px 0;
}

.bg-production__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.bg-production__title {
  margin: 0 0 20px;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.bg-production__lead {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  color: #4a4a4a;
}

.bg-production__list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.bg-production__list li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #3d3d3d;
}

.bg-production__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 1.5px solid #b5a48f;
  border-radius: 50%;
  background: center / 11px 8px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath fill='none' stroke='%23B99272' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 4.5 4.2 7.5 11 1.5'/%3E%3C/svg%3E");
}

.bg-production__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--bg-production-btn);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease;
}

.bg-production__btn:hover {
  background: var(--bg-production-btn-hover);
  color: #fff;
}

.bg-production__gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 520px;
}

.bg-production__photo {
  overflow: hidden;
  border-radius: 14px;
  background: #e6e2db;
}

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

.bg-production__photo--main {
  grid-row: 1 / span 2;
  min-height: 100%;
}

.bg-production__photo--top,
.bg-production__photo--bottom {
  min-height: 0;
}

/* Architects */
.bg-architects__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.bg-architects__text p {
  color: var(--bg-muted);
  margin: 16px 0 24px;
}
.bg-architects__team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bg-architects__card {
  background: var(--bg-light);
  border-radius: var(--bg-radius);
  padding: 16px;
}
.bg-architects__photo {
  aspect-ratio: 1;
  border-radius: 10px;
  background-size: cover;
  background-position: center top;
  margin-bottom: 14px;
}
.bg-architects__card h3 {
  font-size: 16px;
  font-weight: 600;
}
.bg-architects__card span {
  font-size: 13px;
  color: var(--bg-muted);
}

/* About — фото + затемнение, две колонки с разделителем */
.bg-about {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
  padding: clamp(64px, 8vw, 96px) 0;
  color: #fff;
  overflow: hidden;
}

.bg-about__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bg-about__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.58) 45%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.bg-about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.bg-about__title {
  margin: 0 0 20px;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.bg-about__text {
  margin: 0 0 32px;
  max-width: 560px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.bg-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  border-radius: 10px;
  background: var(--bg-production-btn);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease;
}

.bg-about__btn:hover {
  background: var(--bg-production-btn-hover);
  color: #fff;
}

.bg-about__divider {
  width: 1px;
  height: clamp(200px, 42vh, 280px);
  justify-self: center;
  align-self: center;
  background: rgba(255, 255, 255, 0.9);
}

.bg-about__col--stat {
  display: flex;
  align-items: center;
  padding-left: clamp(8px, 2vw, 24px);
}

.bg-about__stat {
  margin: 0;
}

.bg-about__stat-num {
  display: block;
  font-size: clamp(72px, 11vw, 128px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.bg-about__stat-text {
  display: block;
  margin-top: 16px;
  max-width: 360px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

/* Contact */
.bg-contact {
  background: var(--bg-section);
  padding: 80px 0;
}

.bg-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.bg-contact__form-wrap h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.15;
}

.bg-contact__form-wrap p {
  color: var(--bg-muted);
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
}

.bg-contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bg-contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bg-contact__fields--action {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.bg-contact__fields input {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--bg-text);
}

.bg-contact__fields input::placeholder {
  color: #9a9a9a;
}

.bg-contact__fields--action .bg-btn {
  min-height: 52px;
  padding: 15px 28px;
  white-space: nowrap;
  border-radius: 8px;
}

.bg-contact__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--bg-muted);
  margin-top: 4px;
}

.bg-contact__agree a {
  color: var(--bg-beige-hover);
  text-decoration: underline;
}

.bg-contact__image {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(30, 30, 30, 0.06);
}

.bg-contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 360px;
}

/* Footer */
.bg-footer {
  background: #fff;
  color: var(--bg-text);
  padding: 56px 0 28px;
  border-top: 1px solid var(--bg-border);
}

.bg-footer a {
  color: var(--bg-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bg-footer a:hover {
  color: var(--bg-beige-hover);
}

.bg-footer__top {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr) 1.15fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--bg-border);
}

.bg-footer__brand img {
  display: block;
  height: 44px;
  width: auto;
}

.bg-footer__brand p {
  font-size: 13px;
  color: var(--bg-muted);
  margin: 14px 0 18px;
  max-width: 260px;
  line-height: 1.5;
}

.bg-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bg-footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.bg-footer__socials img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.bg-footer__col strong {
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bg-text);
}

.bg-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bg-footer__col li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--bg-muted);
}

.bg-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.bg-footer__contacts p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bg-muted);
}

.bg-footer__phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-text);
}

.bg-footer__contacts .bg-btn--primary {
  margin-top: 8px;
  color: #fff;
}

.bg-footer__contacts .bg-btn--primary:hover {
  color: #fff;
}

.bg-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  font-size: 13px;
  color: var(--bg-muted);
}

.bg-footer__bottom > :first-child {
  justify-self: start;
}

.bg-footer__bottom > :nth-child(2) {
  justify-self: center;
}

.bg-footer__bottom > :last-child {
  justify-self: end;
  text-align: right;
}

.bg-footer__dev a {
  color: var(--bg-muted);
}

.bg-footer__dev a:hover {
  color: var(--bg-beige-hover);
}

.bg-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  place-items: center;
}
.bg-modal[hidden] { display: none !important; }
.bg-modal__box {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  max-width: 420px;
  width: calc(100% - 32px);
  position: relative;
  text-align: center;
}
.bg-modal__close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
  .bg-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .bg-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 992px) {
  .bg-header__nav { display: none; }
  .bg-header__burger { display: flex; }
  .bg-header__inner { grid-template-columns: auto 1fr auto; }
  .bg-header__actions .bg-btn--primary { display: none; }
  .bg-hero .bg-wrap.bg-hero__layout {
    grid-template-columns: 1fr;
    align-items: end;
    padding-bottom: 120px;
    width: calc(100% - 32px);
  }
  .bg-hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px 32px;
    text-align: left;
    order: -1;
    margin-bottom: 8px;
  }
  .bg-hero__stat span { max-width: none; }
  .bg-hero .bg-wrap.bg-hero__nav {
    left: 50%;
    right: auto;
    width: calc(100% - 32px);
    transform: translateX(-50%);
    justify-content: flex-end;
  }
  .bg-produce__mosaic-top { flex-direction: column; }
  .bg-produce__mosaic-left,
  .bg-produce__card--tall { flex: 0 0 100%; max-width: 100%; }
  .bg-produce__card--tall { min-height: 420px; }
  .bg-produce__row { flex-direction: column; gap: 20px; margin-bottom: 20px; }
  .bg-produce__row .bg-produce__card { flex: 0 0 100%; max-width: 100%; }
  .bg-produce__mosaic-bottom { flex-direction: column; gap: 20px; }
  .bg-produce__card--bottom { flex: 0 0 100%; max-width: 100%; }
  .bg-video-projects__list { gap: 20px; margin-top: 24px; }
  .bg-video-projects__item { flex: 1 1 calc(50% - 10px); max-width: none; min-height: 420px; }
  .bg-production__band { padding: 56px 0; }
  .bg-production__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bg-production__gallery {
    min-height: 440px;
    order: 2;
  }
  .bg-production__content { order: 1; }
  .bg-architects__grid,
  .bg-contact__grid { grid-template-columns: 1fr; }
  .bg-contact__fields,
  .bg-contact__fields--action { grid-template-columns: 1fr; }
  .bg-contact__fields--action .bg-btn { width: 100%; }
  .bg-contact__image img { min-height: 280px; }
  .bg-about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bg-about__divider { display: none; }
  .bg-about__col--stat { padding-left: 0; }
  .bg-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .bg-video-projects__item {
    flex: 1 1 calc(50% - 10px);
    min-height: 360px;
    border-radius: 40px;
  }
  .bg-video-projects__label { font-size: 18px; }
}

@media (max-width: 640px) {
  .bg-section { padding: 48px 0; }
  .bg-production__band { padding: 48px 0; }
  .bg-production__gallery {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bg-production__photo--main {
    grid-row: auto;
    min-height: 280px;
  }
  .bg-production__photo--top,
  .bg-production__photo--bottom {
    min-height: 200px;
  }
  .bg-about { min-height: 0; padding: 56px 0; }
  .bg-video-projects__list { flex-direction: column; align-items: stretch; }
  .bg-video-projects__item {
    flex: 1 1 100%;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    min-height: 320px;
  }
  .bg-architects__team { grid-template-columns: 1fr; }
  .bg-footer__top { grid-template-columns: 1fr; }
  .bg-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bg-footer__bottom > :first-child,
  .bg-footer__bottom > :nth-child(2),
  .bg-footer__bottom > :last-child {
    justify-self: center;
    text-align: center;
  }
}
