@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: 15px;
  }
}
.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: "Oswald", sans-serif;
  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: "Open Sans", 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: "Oswald", sans-serif;
  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: "Open Sans", 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: #d89b55;
}
.auth-form button {
  margin-top: 15px;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #d89b55;
  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: "Open Sans", sans-serif;
}
.auth-links a {
  color: #d89b55;
  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: "Oswald", sans-serif;
  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: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.85;
}
.account__logout {
  padding: 14px 30px;
  max-width: 150px;
  border-radius: 40px;
  background: #d89b55;
  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: #d89b55;
  text-decoration: none;
  font-family: "Open Sans", 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;
}

.about {
  background: #000;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.about .breadcrumbs {
  width: 100%;
  max-width: 1400px;
  margin: 100px auto 0;
  padding: 0 50px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0.8;
  letter-spacing: 0.02em;
  position: fixed;
  z-index: 3;
}
@media (max-width: 726px) {
  .about .breadcrumbs {
    display: none;
    padding-left: 15px;
  }
}
.about .breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
.about .breadcrumbs a:hover {
  opacity: 0.6;
}
.about .design-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.about .design-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
}
.about .design-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}
.about .design-hero__title-block {
  position: absolute;
  left: 50%;
  bottom: 115px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
.about .design-hero__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 42px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 768px) {
  .about .design-hero {
    height: 100%;
  }
  .about .design-hero__title-block {
    width: 100%;
  }
  .about .design-hero__title {
    font-size: 32px;
    line-height: 110%;
  }
}
.about .design-plan {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.about .design-plan__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}
.about .design-plan__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .design-plan__content {
  position: relative;
  padding: 120px 50px;
  z-index: 2;
  height: 100%;
}
.about .design-plan__title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about .design-plan__desc {
  max-width: 450px;
  opacity: 0.75;
  line-height: 155%;
  margin-bottom: 35px;
  margin-top: 0;
}
.about .design-plan__tabs {
  position: absolute;
  bottom: 114px;
  display: flex;
  gap: 20px;
  width: 100%;
  z-index: 3;
}
.about .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: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  transition: 0.3s;
  position: relative;
  color: #fff;
}
.about .design-plan__tabs .tab:hover {
  background: rgba(255, 255, 255, 0.1);
}
.about .design-plan__tabs .tab.active {
  border: 1px solid #9D9D9D;
}
.about .design-plan__tabs .tab__number {
  font-size: 20px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  margin-bottom: 5px;
  color: #d89b55;
}
.about .design-plan__tabs .tab__label {
  font-size: 26px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
.about .black {
  width: 100%;
  height: 200px;
  position: relative;
  background-color: #000;
}
.about .black::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  height: 1px;
  background-color: #9D9D9D;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .about .black {
    height: 100px;
  }
  .about .black::before {
    left: 13px;
    right: 13px;
  }
}
@media (max-width: 768px) {
  .about .design-plan {
    height: auto;
  }
  .about .design-plan__content {
    padding: 50px 15px 0;
    display: flex;
    flex-direction: column;
  }
  .about .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;
  }
  .about .design-plan__tabs .tab {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
  }
  .about .design-plan__tabs .tab:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .about .design-plan__tabs .tab.active {
    border: 1px solid #9D9D9D;
  }
  .about .design-plan__tabs .tab__label {
    font-size: 20px;
  }
}
.about .about-section {
  padding: 80px 50px;
  background: #000;
  /* PARTNERS */
  /* TEAM */
}
@media (max-width: 726px) {
  .about .about-section {
    padding: 50px 15px;
  }
}
.about .about-section__title {
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media (max-width: 726px) {
  .about .about-section__title {
    font-size: 22px;
  }
}
.about .about-section--partners .partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 0 20px;
}
.about .about-section--partners .partners__grid .partners__item {
  width: 100%;
  aspect-ratio: 3/2;
  background: #333;
  border-radius: 4px;
}
.about .about-section--team .team__grid {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
}
.about .about-section--team .team-card {
  display: flex;
  flex-direction: column;
  width: calc((100% - 100px - 24px) / 4);
}
@media (max-width: 726px) {
  .about .about-section--team .team-card {
    width: calc((100% - 30px - 24px) / 2);
  }
}
.about .about-section--team .team-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.1;
  margin-bottom: 25px;
  overflow: hidden;
}
.about .about-section--team .team-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.2s ease;
}
.about .about-section--team .team-card__img--base {
  opacity: 1;
}
.about .about-section--team .team-card__img--hover {
  opacity: 0;
}
.about .about-section--team .team-card:hover .team-card__img--hover {
  opacity: 1;
}
.about .about-section--team .team-card__name {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 726px) {
  .about .about-section--team .team-card__name {
    font-size: 16px;
  }
}
.about .about-section--team .team-card__role {
  font-size: 20px;
  opacity: 0.75;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 105%;
}
@media (max-width: 726px) {
  .about .about-section--team .team-card__role {
    font-size: 14px;
  }
}
.about .design-portfolio {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.about .design-portfolio__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about .design-portfolio__title-block {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 115px;
  transform: translateX(-50%);
  text-align: center;
}
.about .design-portfolio__title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
}
.about .design-portfolio__btn {
  font-weight: 300;
  line-height: 105%;
  font-size: 20px;
  margin: 0;
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.about .design-portfolio__btn .icon-plus {
  width: 17px;
  height: 17px;
  display: block;
  transition: transform 0.3s ease;
}
.about .design-portfolio__btn:hover .icon-plus {
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .about .design-portfolio__title {
    font-size: 32px;
  }
}

.team-photo {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.team-photo__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.2s ease;
}
.team-photo__img--base {
  opacity: 1;
}
.team-photo__img--hover {
  opacity: 0;
}

.team-photo:hover .team-photo__img--hover {
  opacity: 1;
}

.design-form {
  padding: 80px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.design-form__title {
  font-family: "Oswald", sans-serif;
  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: "Oswald", sans-serif;
  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: #9D9D9D;
  font-size: 20px;
  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 #D1974E;
}
.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 #D1974E !important;
}
.design-form__submit {
  margin-top: 20px;
  color: #fff;
  padding: 20px 100px;
  background: #d89b55;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 85px;
  max-width: 315px;
  font-size: 20px;
  font-weight: 300;
  font-family: "Open Sans", 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: #9D9D9D;
}
.design-form__policy a {
  text-decoration: none;
  color: #9D9D9D;
}
.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: #000;
  padding: 87px 65px 87px 50px;
  color: #fff;
  font-family: "Open Sans", 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;
}
.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: "Open Sans", sans-serif;
  color: #aaa;
  font-size: 16px;
  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: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
}
.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%;
}
.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;
}
.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--address {
    order: 6;
  }
  .site-footer__column--brand {
    order: 20;
    margin-top: 40px;
  }
}