/* ==========================================
   SITE FOOTER
========================================== */

.site-footer {
  position: relative;
  background: #102f46;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1.15fr 0.9fr 1fr;
  gap: 58px;

  padding-top: 70px;
  padding-bottom: 60px;
}


/* ==========================================
   LOGO / ABOUT
========================================== */

.site-footer__logo {
  display: inline-flex;
  flex-direction: column;

  margin-bottom: 22px;

  color: #fff;
  line-height: 1;
  text-decoration: none;
}

.site-footer__logo-main {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer__logo-sub {
  margin-top: 6px;

  color: #c69a48;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__about p {
  max-width: 390px;
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
  line-height: 1.8;
}

.site-footer__stars {
  margin-top: 20px;

  color: #c69a48;
  font-size: 17px;
  letter-spacing: 5px;
}


/* ==========================================
   HEADINGS
========================================== */

.site-footer__column h3 {
  position: relative;

  margin: 4px 0 25px;
  padding-bottom: 13px;

  color: #fff;

  font-size: 16px;
  font-weight: 700;
}

.site-footer__column h3::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 32px;
  height: 2px;

  background: #c69a48;
}


/* ==========================================
   CONTACT
========================================== */

.site-footer__contact {
  display: grid;
  gap: 16px;
}

.site-footer__contact a {
  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;

  font-size: 14px;
  line-height: 1.45;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__contact a > span:last-child {
  display: flex;
  flex-direction: column;
}

.site-footer__contact small {
  margin-bottom: 2px;

  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  border: 1px solid rgba(198, 154, 72, 0.35);
  border-radius: 50%;

  color: #c69a48;
}


/* ==========================================
   LINKS
========================================== */

.site-footer__links {
  display: grid;
  gap: 11px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.site-footer__links a {
  position: relative;

  display: inline-block;

  padding-left: 0;

  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;

  font-size: 14px;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  padding-left: 8px;
  color: #fff;
}


/* ==========================================
   SOCIAL
========================================== */

.site-footer__social-text {
  margin: 0 0 20px;

  color: rgba(255, 255, 255, 0.66);

  font-size: 13px;
  line-height: 1.7;
}

.site-footer__social {
  display: flex;
  gap: 10px;

  margin-bottom: 25px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 39px;
  height: 39px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  color: #fff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: #c69a48;
  border-color: #c69a48;
  color: #fff;

  transform: translateY(-2px);
}


/* ==========================================
   BOOKING
========================================== */

.site-footer__booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 11px 21px;

  border-radius: 999px;

  background: #c69a48;
  color: #fff;

  font-size: 13px;
  font-weight: 800;
  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-footer__booking:hover,
.site-footer__booking:focus-visible {
  background: #ae823d;
  color: #fff;

  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}


/* ==========================================
   BOTTOM
========================================== */

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.12);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  min-height: 72px;
}

.site-footer__bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;

  font-size: 12px;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #fff;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 60px;
  }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 38px;

    padding-top: 50px;
    padding-bottom: 45px;
  }

  .site-footer__about p {
    max-width: none;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    min-height: 0;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .site-footer__legal {
    gap: 10px 18px;
  }
}