@charset "UTF-8";

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.site-header__inner {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
  padding-right: 65px;
  padding-left: 45px;
}

@media (max-width: 726px) {
  .site-header__inner {
    padding-left: 0;
    left: 15px;
    padding-right: 25px;
  }
}

.site-header__logo {
  top: 40px;
  transform: translateX(-50%);
  z-index: 5;
  position: fixed;
  pointer-events: auto;
}

@media (max-width: 726px) {
  .site-header__logo {
    left: 30%;
  }
}

@media (max-width: 350px) {
  .site-header__logo {
    left: 25%;
  }
}

.site-header__logo img {
  width: 200px;
}

@media (max-width: 426px) {
  .site-header__logo img {
    width: 120px;
  }
}

body.menu-open {
  overflow: auto;
}

/* Активный хедер при открытии меню */
.site.menu-open .site-header__inner {
  padding-left: 50px;
  left: auto;
}

@media (max-width: 726px) {
  .site.site.menu-open .site-header__inner {
    padding-left: 30px;
  }
}

.site-header__icons {
  opacity: 1;
  pointer-events: auto;
  display: flex;
  gap: 10px;
}

/* HEADER ICONS */
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-icon:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.header-icon img {
  width: 47px;
  height: 47px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* BURGER */
.menu-toggle {
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  /* чтобы кнопка была выше всего */
}

.menu-toggle img {
  width: 35px;
  height: 35px;
  filter: invert(0%);
  transition: filter 0.3s ease;
}

.menu-toggle.black img {
  filter: invert(100%);
}

.icon-close {
  display: none !important;
  position: relative;
  left: -30px;
}

/* Когда меню открыто — показываем крестик */
.site.menu-open .icon-burger {
  display: none;
}

.site.menu-open .icon-close {
  display: block !important;
}

.site.sections-hidden .site-header__sections {
  display: none;
}

.site-header__sections {
  position: absolute;
  top: 50px;
  left: 120px;
  display: flex;
  gap: 25px;
  z-index: 3;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .site-header__sections {
    gap: 15px;
    left: 100px;
  }
}

@media (max-width: 1000px) {
  .site-header__sections {
    display: none;
  }
}

/* ===== HEADER SECTION BUTTON ===== */
.header-section {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  opacity: 0.9;
  position: relative;
  transition: opacity 0.2s ease;
  /* underline */
}

.header-section:hover {
  opacity: 1;
}

.header-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.header-section:hover::after {
  transform: scaleX(1);
}

.header-section.active {
  opacity: 1;
}

.header-section.active::after {
  transform: scaleX(1);
  background: #ffffff;
}

@media (min-width: 1001px) {
  .site-menu__group {
    display: none;
  }

  .site-menu__group.is-active,
  .site-menu__static {
    display: block;
  }

  .site-header__sections {
    display: flex;
  }
}

.site-search {
  position: fixed;
  top: 40px;
  right: 25px;
  width: 0;
  height: 60px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  z-index: 100000;
}

.site-search__form {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2px 0 20px;
  gap: 15px;
}

.site-search__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
}

.site-search__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.site-search__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.site-search__input::-webkit-search-cancel-button {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  cursor: pointer;
}

.site-search__submit {
  background: none;
  border: none;
  cursor: pointer;
  padding-top: 5px;
}

.site-search__submit img {
  width: 48px;
  height: 48px;
}

/* ===== АКТИВНОЕ СОСТОЯНИЕ ===== */
.site.search-open .site-search {
  width: 420px;
  opacity: 1;
  pointer-events: auto;
  z-index: 999999;
}

/* адаптив */
@media (max-width: 600px) {
  .site.search-open .site-search {
    width: calc(100% - 30px);
    right: 15px;
  }
}

/* =========================
   AUTH PAGES
========================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  padding: 120px 20px 60px;
}

.auth-page--login,
.auth-page--register {
  background: radial-gradient(ellipse at top, rgba(216, 155, 85, 0.15), transparent 60%), #000;
}

/* =========================
   AUTH BLOCK
========================= */
.auth {
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 40px;
  position: relative;
}

@media (max-width: 480px) {
  .auth {
    padding: 30px 20px;
  }
}

.auth__title {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 35px;
  color: #fff;
}

/* =========================
   FORM
========================= */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.auth-form input {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 2px;
  font-size: 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.25s ease;
}

.auth-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.auth-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.auth-form input:focus {
  outline: none;
  border-color: #BBCCD4;
}

.auth-form button {
  margin-top: 15px;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #BBCCD4;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.auth-form button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.auth-form__error {
  font-size: 14px;
  color: #ff8c8c;
  text-align: center;
  min-height: 18px;
}

/* =========================
   LINKS UNDER FORM
========================= */
.auth-links {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.auth-links a {
  color: #BBCCD4;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.auth-links a:hover {
  opacity: 0.8;
}

/* =========================
   ACCOUNT PAGE
========================= */
.account {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  padding: 140px 50px 80px;
}

@media (max-width: 726px) {
  .account {
    padding: 70px 15px 40px;
  }
}

.account__inner {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  background: rgba(0, 0, 0, 0.85);
}

.account h1 {
  font-size: 32px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.account p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.85;
}

.account__logout {
  padding: 14px 30px;
  max-width: 150px;
  border-radius: 40px;
  background: #BBCCD4;
  border: none;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.account__logout:hover {
  opacity: 0.9;
}

/* =========================
   DISABLE BROWSER AUTOFILL STYLES
========================= */
.auth-form input {
  background-color: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

/* Chrome / Edge / Safari */
.auth-form input:-webkit-autofill,
.auth-form input:-webkit-autofill:hover,
.auth-form input:-webkit-autofill:focus,
.auth-form input:-webkit-autofill:active {
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

/* Firefox */
.auth-form input:-moz-autofill {
  box-shadow: 0 0 0 1000px transparent inset !important;
  -moz-text-fill-color: #fff !important;
}

.account__actions {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.account__home {
  color: #BBCCD4;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

/* =========================
   HIDE HEADER ON SCROLL
========================= */
.site-header__inner,
.site-header__logo {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.breadcrumbs {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.site.header-hidden .site-header__inner {
  transform: translateY(-120px);
  opacity: 0;
  pointer-events: none;
}

.site.header-hidden .site-header__logo {
  transform: translateY(-120px);
  opacity: 0;
  pointer-events: none;
}

.site.header-hidden .breadcrumbs {
  transform: translateY(-80px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

/* БАЗА */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/bebasneuecyrillic.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #342418;
  color: #fff;
}

body.home {
  overflow: auto;
}

html.has-cursor,
html.has-cursor * {
  cursor: pointer !important;
}

#pageCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.cursor-hand {
  position: fixed;
  width: 34px;
  height: 34px;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  background: url("/img/cursor-hand.svg") no-repeat center/contain;
  opacity: 1;
}

.site {
  min-height: 100vh;
  position: relative;
  transition: opacity 1s ease, transform 1s ease;
}

.site.menu-open .site-menu__panel {
  transform: translateX(0);
  opacity: 1;
  transition: transform 1s ease, opacity 1s ease;
}

.site.menu-open .site-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1s ease;
}

.site.menu-closing .site-menu__panel {
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.site.menu-closing .site-menu__backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

/* FULLSCREEN SCROLL */
.fp-wrapper {
  position: relative;
  z-index: 1;
  height: auto;
  overflow: visible;
}

.fp-section {
  position: relative;
  height: 100vh;
  will-change: transform;
}

.fp-section--stub {
  background: #111;
}

.fp-pin-spacer {
  position: relative;
  width: 100%;
}

.fp-section.fp-pin {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

/* SWIPER ЭЛЕМЕНТЫ */
.swiper-pagination {
  width: auto !important;
  left: 50% !important;
  margin-bottom: 50px;
}

.swiper-pagination-bullet {
  display: block !important;
}

/* HERO SLIDER */
.hero-slide--static {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-section {
  background: #000;
}

.hero-slider {
  height: 100%;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

.hero-slider .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1) !important;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  cursor: pointer;
  width: 48px;
  height: 48px;
  opacity: 0.85;
  z-index: 99;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 726px) {
  .hero-slider__arrow {
    width: 32px;
    height: 32px;
  }
}

.hero-slider__arrow img {
  width: 100%;
  height: 100%;
}

.hero-slider__arrow:hover {
  opacity: 1;
}

.hero-slider__arrow--prev {
  left: 40px;
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 726px) {
  .hero-slider__arrow--prev {
    left: 10px;
  }
}

.hero-slider__arrow--next {
  right: 40px;
}

@media (max-width: 726px) {
  .hero-slider__arrow--next {
    right: 10px;
  }
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-slide__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.hero-slide__content--center {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
}

.hero-slide__content--up {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50%;
  padding-bottom: 90px;
  z-index: 3;
}

.hero-slide__title {
  font-size: 42px;
  text-transform: uppercase;
  line-height: 110%;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 0;
}

.hero-slide__subtitle {
  display: flex;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  margin: 0;
}

.hero-slide__btn {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.hero-slide__btn .icon-plus {
  width: 17px;
  height: 17px;
  display: flex;
  position: relative;
  top: 5px;
  transition: transform 0.3s ease;
}

.hero-slide__dots {
  margin-top: 40px;
  display: flex;
  gap: 8px;
}

.hero-slide__dots .dot {
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-slide__btn:hover .icon-plus {
  transform: rotate(90deg);
}

/* SWIPER PAGINATION */
.hero-slider__pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.hero-slider__pagination .swiper-pagination-bullet {
  width: 69px;
  height: 8px;
  border: 1.5px solid #fff;
  background: transparent;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  opacity: 1;
}

.hero-slider__pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #fff;
  animation: none;
}

.hero-slider__pagination .swiper-pagination-bullet-active::after {
  animation: fillbar 7s linear forwards;
}

@media (max-width: 600px) {
  .hero-slider__pagination .swiper-pagination-bullet-active::after {
    animation: fillbar 6s linear forwards;
  }
}

@keyframes fillbar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* SITE MENU */
.site-menu {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 90000;
}

.site-menu__panel {
  width: 420px;
  max-width: 80%;
  background: rgba(252, 252, 252, 0.07);
  -webkit-backdrop-filter: blur(7px) saturate(100%);
  backdrop-filter: blur(7px) saturate(100%);
  padding: 105px 35px 25px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease-out;
  pointer-events: auto;
  overflow-y: auto;
}

.site-menu__panel::-webkit-scrollbar {
  display: none;
}

@media (max-width: 726px) {
  .site-menu__panel {
    padding: 105px 15px 25px;
  }
}

.site-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 80000;
}

.site-menu__group.has-accordion {
  display: block !important;
}

.site-menu__group.has-accordion ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.site-menu__group.has-accordion.is-open ul {
  max-height: 500px;
  margin: 0 0 10px;
}

.site-menu__group.has-accordion .site-menu__title {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.site-menu__group.has-accordion .site-menu__title:hover {
  color: #BBCCD4;
}

.site-menu__group ul {
  max-height: 500px;
  margin: 0 0 10px;
}

.site-menu__group .site-menu__title {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.site-menu__group .site-menu__title:hover {
  color: #BBCCD4;
}

.site-menu__group a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  margin: 0;
}

.site-menu__group a:hover {
  color: #BBCCD4;
}

.site-menu__title {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  margin: 0;
  padding-bottom: 12px;
}

.site-menu__title a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-menu__title-simple {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  margin: 0 0 18px;
}

.site-menu__title-simple a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-menu__title-simple a:hover {
  color: #BBCCD4;
}

.site-menu__nav ul {
  list-style: none;
  padding: 0;
}

.site-menu__nav li {
  font-size: 14px;
  margin-bottom: 10px;
}

.site-menu__nav li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  transition: opacity 0.3s ease;
  text-transform: none !important;
  font-size: 14px !important;
}

.site-menu__nav li a:hover {
  color: #BBCCD4;
}

.site-menu__contacts {
  padding-top: 30px;
  font-size: 14px;
}

.site-menu__contacts p {
  margin: 0 0 15px;
}

.site-menu__contacts a {
  color: #fff;
  text-decoration: none;
}

.site-menu__contacts a:hover {
  text-decoration: underline;
}

.site-menu__socials {
  margin-top: 25px;
  display: flex;
  gap: 8px;
}

.site-menu__socials a {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

.site-menu__socials a:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 0.9;
}

/* АДАПТИВ */
@media (max-width: 768px) {
  .hero-slide__title {
    font-size: 32px;
  }

  .site-menu__panel {
    max-width: 100%;
    background-size: cover;
    background-position: center;
  }

  .hero-slide__content--center {
    width: 324px;
  }
}

.iti {
  width: 100%;
}

.iti__country-list {
  background: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.iti__country-name {
  font-size: 14px;
}

.iti__dial-code {
  font-size: 14px;
}

.iti__country-list {
  font-size: 14px;
}

/* ===============================
   MENU GROUPS VISIBILITY
================================ */
.site-menu__group {
  display: none;
}

/* активная группа */
.site-menu__group.is-active {
  display: block;
}

/* static-блок виден по умолчанию */
.site-menu__static {
  display: block;
}

.site.menu-open.menu-by-section .site-menu__group.has-accordion {
  display: none !important;
}

/* ===============================
   МЕНЮ ОТКРЫТО ЧЕРЕЗ ВЕРХНИЕ БЛОКИ
================================ */
.site.menu-by-section .site-menu__static {
  display: none;
}

/*************************************
    * 7. PROEKTIRUEM
    *************************************/
.design-plan {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.design-plan__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}

.design-plan__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.design-plan__content {
  position: relative;
  padding: 120px 50px;
  z-index: 2;
  height: 100%;
}

.design-plan__title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.design-plan__desc {
  max-width: 450px;
  font-weight: 300;
  line-height: 155%;
  margin-bottom: 35px;
  margin-top: 0;
}

.design-plan__tabs {
  position: absolute;
  bottom: 114px;
  display: flex;
  gap: 20px;
  width: 100%;
  z-index: 3;
}

.design-plan__tabs .tab {
  width: 211px;
  height: 211px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(252, 252, 252, 0.07);
  -webkit-backdrop-filter: blur(7px) saturate(100%);
  backdrop-filter: blur(7px) saturate(100%);
  padding: 20px 15px;
  border: none;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  letter-spacing: 0.05em;
  transition: 0.3s;
  position: relative;
  color: #fff;
}

.design-plan__tabs .tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.design-plan__tabs .tab.active {
  border: 1px solid #BBCCD4;
}

.design-plan__tabs .tab__number {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  margin-bottom: 5px;
  color: #BBCCD4;
}

.design-plan__tabs .tab__label {
  font-size: 26px;
  font-weight: 600;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

/*************************************
     * 10. АДАПТИВ
     *************************************/
@media (max-width: 1100px) {
  .design-plan {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .design-plan {
    min-height: 700px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .design-plan {
    height: auto;
  }

  .design-plan__content {
    padding: 50px 15px 0;
    display: flex;
    flex-direction: column;
  }

  .design-plan__tabs {
    position: relative;
    padding-top: 200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    justify-content: center;
    margin-top: auto;
    bottom: 30px;
  }

  .design-plan__tabs .tab {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
  }

  .design-plan__tabs .tab:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .design-plan__tabs .tab.active {
    border: 1px solid #BBCCD4;
  }

  .design-plan__tabs .tab__label {
    font-size: 20px;
  }
}

/*************************************
    * 6. BRAND BLOCK (Интербилдинг)
    *************************************/
.design-brand {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.99);
}

.design-brand__image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.design-brand__title-block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 35px);
  text-align: center;
}

.design-brand__title {
  font-weight: 300;
  line-height: 105%;
  font-size: 20px;
  color: #55504C;
  margin-bottom: 55px;
  margin-top: 0;
}

.design-brand__btn {
  font-weight: 300;
  line-height: 105%;
  font-size: 20px;
  color: #55504C;
  margin: 0;
  text-decoration: none;
}

@media (max-width: 768px) {
  .design-brand__title-block {
    width: 95%;
  }

  .design-brand__title {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .design-brand__btn {
    font-size: 16px;
  }
}

.black {
  width: 100%;
  height: 200px;
  position: relative;
  background-color: #342418;
}

.black::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  height: 1px;
  background-color: #EFEAE7;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .black {
    height: 100px;
  }

  .black::before {
    left: 13px;
    right: 13px;
  }
}

@media (max-width: 768px) {
  .design-plan__content {
    padding: 50px 15px 0 !important;
    display: flex;
    flex-direction: column;
  }

  .design-plan__tabs {
    position: relative !important;
    padding-top: 200px;
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 6px !important;
    justify-content: center;
    margin-top: auto;
    bottom: 30px !important;
  }

  .design-plan__tabs .tab {
    width: 185px;
    height: 185px;
  }

  .design-plan__tabs .tab:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .design-plan__tabs .tab.active {
    border: 1px solid #BBCCD4;
  }

  .design-plan__tabs .tab__label {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .design-brand {
    min-height: 700px;
    height: auto;
  }
}

/*************************************
     * 2–5. ЭТАПЫ (01, 02, 03, 04)
     *************************************/
.design-step {
  display: grid;
  grid-template-columns: 27% 1fr;
  position: relative;
  padding: 80px 50px;
}

.design-step__number {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 24px;
  opacity: 0.8;
  color: #BBCCD4;
}

.design-step__number::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  width: calc(100% - 50px);
  height: 2px;
  background-color: #BBCCD4;
  right: 50px;
  max-width: 93%;
}

.design-step__content {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 30px;
  gap: 60px;
  align-items: center;
}

.design-step__image {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
}

.design-step__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}

.design-step__title {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 32px;
  margin: 0;
  padding-bottom: 20px;
  line-height: 110%;
  border-bottom: 1px solid #BBCCD4;
}

.design-step__desc {
  color: #fff;
  max-width: 550px;
  line-height: 105%;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 768px) {
  .design-step {
    grid-template-columns: 1fr;
    padding: 80px 15px 50px;
  }

  .design-step__number::after {
    height: 1px;
    left: 0;
    width: 100%;
    max-width: 100%;
  }

  .design-step__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }

  .design-step__text {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    grid-template-columns: unset;
  }

  .design-step__title {
    font-size: 26px;
    max-width: 100%;
    border-bottom: 1px solid #BBCCD4;
    padding-bottom: 10px;
  }

  .design-step__desc {
    max-width: 100%;
    line-height: 130%;
  }

  .design-step__image {
    order: 2;
    width: 100%;
    height: 200px;
    border-radius: 5px;
  }
}

@media (max-width: 768px) {
  .design-step__content {
    grid-template-columns: 1fr;
  }
}

.about-contacts,
.about-reqs {
  background: #342418;
  padding: 80px 50px;
  color: #fff;
}

@media (max-width: 726px) {

  .about-contacts,
  .about-reqs {
    padding: 50px 15px 30px;
  }
}

.about-contacts__inner,
.about-reqs__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* ======= КОНТАКТЫ ======= */
.ac-title {
  font-size: 32px;
  margin-top: 0;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 75px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  font-weight: 600;
}

@media (max-width: 726px) {
  .ac-title {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

.reqs-map iframe {
  filter: grayscale(100%) brightness(0.9) contrast(1.1);
}

.ac-subtitle {
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-size: 26px;
  font-weight: 600;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  line-height: 110%;
  text-transform: uppercase;
  margin: 0;
}

.ac-subtitle a {
  text-decoration: none;
  color: #fff;
  transition: color 0.25s ease;
}

.ac-subtitle a:hover {
  color: #BBCCD4;
}

@media (max-width: 726px) {
  .ac-subtitle {
    font-size: 22px;
  }
}

.ac-text {
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 105%;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

@media (max-width: 726px) {
  .ac-text {
    margin-top: 15px;
  }
}

.ac-socials {
  margin: 80px 0 20px;
  display: flex;
  gap: 12px;
}

@media (max-width: 726px) {
  .ac-socials {
    margin-top: 50px;
  }
}

.ac-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.ac-socials a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.reqs-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 726px) {
  .reqs-map iframe {
    height: 300px;
  }
}

/* ======= РЕКВИЗИТЫ ======= */
.reqs-title {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-weight: 500;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  margin-top: 0;
}

.reqs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
}

.reqs-list li {
  margin-bottom: 14px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.reqs-list li span {
  display: inline-block;
  width: 188px;
  margin-right: 20px;
}

.reqs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  background: #BBCCD4;
  color: #fff;
  padding: 20px 0;
  border-radius: 85px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 105%;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  max-width: 316px;
}

.reqs-btn:hover {
  background: #c28e54;
}

/* MOBILE */
@media (max-width: 726px) {
  .about-contacts__inner {
    grid-template-columns: 1fr;
  }

  .about-reqs__inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .reqs-list li span {
    width: 140px;
  }
}

.design-form {
  padding: 80px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.design-form__title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 50px;
}

.design-form__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 450px;
}

.design-form__form label {
  display: flex;
  flex-direction: column;
  font-size: 26px;
}

.design-form__form label span {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  letter-spacing: 0.05em;
}

.design-form__form label input {
  padding: 17px 0 15px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #BBCCD4;
  font-size: 20px;
  font-weight: 300;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent !important;
  color: #fff !important;
  font-family: "Open Sans", sans-serif !important;
}

.design-form__form label input:focus {
  background: transparent !important;
  color: #fff !important;
  border-bottom: 1px solid #BBCCD4;
}

.design-form__form label input:-webkit-autofill,
.design-form__form label input:-webkit-autofill:hover,
.design-form__form label input:-webkit-autofill:focus,
.design-form__form label input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  border-bottom: 1px solid #BBCCD4 !important;
}

.design-form__submit {
  margin-top: 20px;
  color: #fff;
  padding: 20px 100px;
  background: #BBCCD4;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 85px;
  max-width: 315px;
  font-size: 20px;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.design-form__submit:hover {
  opacity: 0.85;
}

.design-form__policy {
  margin-top: -10px;
  font-size: 14px;
  max-width: 420px;
  line-height: 105%;
  color: #BBCCD4;
}

.design-form__policy a {
  text-decoration: none;
  color: #BBCCD4;
}

.design-form__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.design-form__image img {
  width: 660px;
  height: 100%;
}

#phoneInput {
  padding-left: 50px;
}

@media (max-width: 768px) {
  .design-form {
    padding: 50px 15px;
    gap: 50px;
  }

  .design-form__image img {
    width: 100%;
    height: auto;
  }

  .design-form__title {
    font-size: 26px;
    margin-top: 75px;
  }

  .design-form__form label {
    font-size: 22px;
  }

  .design-form__form input {
    font-size: 16px;
  }

  .design-form__submit {
    padding: 17px 80px;
    font-size: 16px;
    margin-top: 0;
  }
}

.success-message {
  display: none;
  background-color: #28a745;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

@media (max-width: 1100px) {
  .design-plan {
    grid-template-columns: 1fr;
  }

  .design-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .design-hero,
  .design-plan,
  .design-portfolio,
  .design-form {
    min-height: 700px;
    height: auto;
  }
}

.site-footer {
  background: #342418;
  padding: 87px 65px 87px 50px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  /* Brand column */
  /* Bottom row */
}

.site-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.site-footer .footer-group {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.site-footer .footer-group-location {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer__column--brand {
  grid-column: span 1;
}

.site-footer__column--brand .site-footer__title {
  margin: 0;
}

.site-footer__column--brand .site-footer__phone {
  margin: 0;
}

.plus {
  font-family: 'Oswald';
}

.site-footer__column--brand .site-footer__email {
  margin: 25px 0 0;
}

.site-footer__column--brand .site-footer__phone a,
.site-footer__column--brand .site-footer__email a {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  color: #BBCCD4;
  font-size: 32px;
  text-decoration: none;
  line-height: 105%;
}

.site-footer__column--brand .site-footer__phone a:hover,
.site-footer__column--brand .site-footer__email a:hover {
  color: #fff;
}

.site-footer__column--brand .site-footer__socials {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.site-footer__column--brand .site-footer__socials a {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #444;
  transition: 0.3s;
}

.site-footer__column--brand .site-footer__socials a:hover {
  opacity: 0.8;
  background: #666;
}

.site-footer__column--brand .site-footer__socials a img {
  width: 47px;
  height: 47px;
  -o-object-fit: contain;
  object-fit: contain;
}

.site-footer__column h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 35px;
}

.site-footer__column h3 a {
  color: #fff;
  text-decoration: none;
}

.site-footer__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__list li {
  margin-bottom: 15px;
}

.site-footer__list li a {
  color: #aaa;
  font-size: 16px;
  text-decoration: none;
  line-height: 105%;
  font-weight: 300;
}

.site-footer__list li a:hover {
  color: #fff;
}

.site-footer__address {
  color: #aaa;
  font-size: 16px;
  margin: 0;
}

.site-footer__bottom {
  margin-top: 100px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 16px;
  font-weight: 300;
}

.site-footer__bottom a {
  color: #888;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: #fff;
}

/* Адаптив */
@media (max-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 75px 15px 20px;
  }

  .site-footer__column h3 {
    font-size: 26px;
  }

  .site-footer__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
  }

  .site-footer__column--brand .site-footer__socials {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOOTER MOBILE ORDER
========================= */
@media (max-width: 768px) {
  .site-footer {
    /* колонки делаем обычными блоками */
    /* ВСЕ группы по умолчанию */
    /* ===== НУЖНЫЙ ПОРЯДОК ===== */
    /* БРЕНД — в самый низ */
  }

  .site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .site-footer__column {
    display: contents;
  }

  .site-footer .footer-group,
  .site-footer .footer-group-location {
    order: 10;
  }

  .site-footer .footer-group--design {
    order: 1;
  }

  .site-footer .footer-group--install {
    order: 2;
  }

  .site-footer .footer-group--project {
    order: 3;
  }

  .site-footer .footer-group--author {
    order: 4;
  }

  .site-footer .footer-group--company {
    order: 5;
  }

  .site-footer .footer-group-location--address {
    order: 6;
  }

  .site-footer__column--brand {
    order: 20;
    margin-top: 40px;
  }
}

.relevanssi-highlight {
  color: #BBCCD4;
}